├── .commitlint.js ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ ├── bugfix.md │ └── pull_request_template.md └── workflows │ ├── cherry-pick.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── nightly.yml │ └── release.yml ├── .gitignore ├── .prettierrc.js ├── .stylelintrc.json ├── CONTRIBUTE-CN.md ├── CONTRIBUTE.md ├── DEPLOY-CN.md ├── DEPLOY.md ├── LICENSE ├── README-CN.md ├── README.md ├── architecture.png ├── config ├── webpack.config.base.ts ├── webpack.config.dev.ts └── webpack.config.prod.ts ├── dashboard.service.js ├── favicon.ico ├── package.json ├── scripts ├── dashboard.sh ├── package.sh ├── setEventTracking.sh ├── upload.sh └── utils.sh ├── server └── dev-server.ts ├── src ├── App.less ├── App.tsx ├── AuthorizedRoute.tsx ├── common.less ├── components │ ├── BaseLineEditModal │ │ ├── index.less │ │ └── index.tsx │ ├── Charts │ │ ├── BarChart │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── BatteryChart.less │ │ ├── BatteryChart.tsx │ │ ├── GaugeChart.less │ │ ├── GaugeChart.tsx │ │ ├── LineChart.tsx │ │ ├── PieChart.tsx │ │ ├── RatioChart.tsx │ │ ├── RingProgressChart.tsx │ │ ├── SpaceChart.less │ │ └── SpaceChart.tsx │ ├── DashboardCard │ │ ├── LineCard.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── DashboardSelect │ │ ├── index.less │ │ └── index.tsx │ ├── GlobalFrequencySelect │ │ ├── index.module.less │ │ └── index.tsx │ ├── HostPortInput │ │ ├── index.module.less │ │ └── index.tsx │ ├── Icon │ │ ├── index.less │ │ └── index.tsx │ ├── Instruction │ │ ├── index.less │ │ └── index.tsx │ ├── LanguageSelect │ │ ├── index.less │ │ └── index.tsx │ ├── MetricCard │ │ └── index.tsx │ ├── MetricPopover │ │ ├── index.module.less │ │ └── index.tsx │ ├── MetricsFilterPanel │ │ ├── FrequencySelect.tsx │ │ ├── index.module.less │ │ └── index.tsx │ ├── Modal.tsx │ ├── ModalWrapper │ │ └── index.tsx │ ├── Service │ │ ├── ServiceCard │ │ │ └── Card.tsx │ │ ├── ServiceCardEdit │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── ServiceHeader │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── ServiceMetricsFilterPanel │ │ ├── index.module.less │ │ └── index.tsx │ └── TimeSelect │ │ ├── index.module.less │ │ └── index.tsx ├── config │ ├── constants.ts │ ├── index.ts │ ├── locale │ │ ├── en-US │ │ │ ├── base.ts │ │ │ ├── common.ts │ │ │ ├── component.ts │ │ │ ├── configServer.ts │ │ │ ├── description.ts │ │ │ ├── device.ts │ │ │ ├── index.ts │ │ │ ├── metric_description.ts │ │ │ ├── rules.ts │ │ │ └── service.ts │ │ └── zh-CN │ │ │ ├── base.ts │ │ │ ├── common.ts │ │ │ ├── component.ts │ │ │ ├── configServer.ts │ │ │ ├── description.ts │ │ │ ├── device.ts │ │ │ ├── index.ts │ │ │ ├── metric_description.ts │ │ │ ├── rules.ts │ │ │ └── service.ts │ ├── rules.ts │ └── service.ts ├── context │ ├── LanguageContext.ts │ └── index.ts ├── index.html ├── index.module.less ├── index.tsx ├── pages │ ├── Login │ │ ├── index.less │ │ └── index.tsx │ ├── MachineDashboard │ │ ├── Cards │ │ │ ├── DiskCard.tsx │ │ │ └── WaterLevelCard │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ ├── Detail │ │ │ ├── CPUDetail.tsx │ │ │ ├── DiskDetail.tsx │ │ │ ├── LoadDetail.tsx │ │ │ ├── MemoryDetail.tsx │ │ │ ├── NetworkDetail.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── NodeResourceOverview │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── defaultMachinePanelConfig.ts │ │ ├── index.module.less │ │ └── index.tsx │ ├── MainPage │ │ ├── Header │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ └── routes.tsx │ ├── MetricDetail │ │ ├── index.module.less │ │ └── index.tsx │ ├── ServiceDashboard │ │ ├── Detail │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── OverviewTable.tsx │ │ ├── ServiceOverview │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ ├── defaultPanelConfig.ts │ │ ├── index.module.less │ │ └── index.tsx │ └── ServiceManage │ │ ├── ConfigInfo │ │ ├── index.less │ │ └── index.tsx │ │ ├── LeaderDistribution │ │ ├── dist │ │ │ └── index.css │ │ ├── index.less │ │ └── index.tsx │ │ ├── LongTermTask │ │ ├── index.less │ │ └── index.tsx │ │ ├── Overview │ │ ├── dist │ │ │ └── index.module.css │ │ ├── index.module.less │ │ └── index.tsx │ │ ├── PartitionDistribution │ │ ├── index.less │ │ └── index.tsx │ │ ├── PartitionInfo │ │ ├── index.less │ │ └── index.tsx │ │ ├── SelectSpace │ │ ├── dist │ │ │ └── index.module.css │ │ └── index.tsx │ │ ├── ServiceInfo │ │ ├── index.less │ │ └── index.tsx │ │ ├── VersionStatistic │ │ ├── VersionItem │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── index.tsx │ │ └── index.less ├── requests │ └── index.tsx ├── static │ ├── iconfont │ │ └── iconfont.js │ ├── images │ │ ├── Graphd-icon60.png │ │ ├── Graphd-image.png │ │ ├── Meta-image.png │ │ ├── Metad-icon60.png │ │ ├── Storage-image.png │ │ ├── Storaged-icon60.png │ │ ├── background_login.png │ │ └── nebula_logo.png │ └── import.d.ts ├── store │ ├── index.ts │ └── models │ │ ├── app.ts │ │ ├── index.ts │ │ ├── machine.ts │ │ ├── metric.ts │ │ ├── nebula.ts │ │ └── service.ts ├── typings.d.ts └── utils │ ├── EventBus.ts │ ├── HttpServiceManager.ts │ ├── chart │ └── chart.ts │ ├── dashboard.ts │ ├── file.ts │ ├── http.ts │ ├── index.ts │ ├── interface.ts │ ├── metric.ts │ ├── promQL.ts │ ├── service.ts │ ├── stat.ts │ ├── url.ts │ └── versionFeature.ts ├── startWebserver.js ├── static ├── custom.json └── iconfont │ └── iconfont.js ├── tsconfig.json ├── vendors ├── Dockerfile ├── config-release.yaml ├── docker-compose.yaml ├── gateway.conf ├── nebula-stats-exporter │ └── config.yaml └── prometheus │ └── prometheus.yml └── webserver.js /.commitlint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.commitlint.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bugfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/PULL_REQUEST_TEMPLATE/bugfix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cherry-pick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/workflows/cherry-pick.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CONTRIBUTE-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/CONTRIBUTE-CN.md -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /DEPLOY-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/DEPLOY-CN.md -------------------------------------------------------------------------------- /DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/DEPLOY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/architecture.png -------------------------------------------------------------------------------- /config/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/config/webpack.config.base.ts -------------------------------------------------------------------------------- /config/webpack.config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/config/webpack.config.dev.ts -------------------------------------------------------------------------------- /config/webpack.config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/config/webpack.config.prod.ts -------------------------------------------------------------------------------- /dashboard.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/dashboard.service.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /scripts/dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/scripts/dashboard.sh -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /scripts/setEventTracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/scripts/setEventTracking.sh -------------------------------------------------------------------------------- /scripts/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/scripts/upload.sh -------------------------------------------------------------------------------- /scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/scripts/utils.sh -------------------------------------------------------------------------------- /server/dev-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/server/dev-server.ts -------------------------------------------------------------------------------- /src/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/App.less -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/AuthorizedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/AuthorizedRoute.tsx -------------------------------------------------------------------------------- /src/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/common.less -------------------------------------------------------------------------------- /src/components/BaseLineEditModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/BaseLineEditModal/index.less -------------------------------------------------------------------------------- /src/components/BaseLineEditModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/BaseLineEditModal/index.tsx -------------------------------------------------------------------------------- /src/components/Charts/BarChart/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/BarChart/index.module.less -------------------------------------------------------------------------------- /src/components/Charts/BarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/BarChart/index.tsx -------------------------------------------------------------------------------- /src/components/Charts/BatteryChart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/BatteryChart.less -------------------------------------------------------------------------------- /src/components/Charts/BatteryChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/BatteryChart.tsx -------------------------------------------------------------------------------- /src/components/Charts/GaugeChart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/GaugeChart.less -------------------------------------------------------------------------------- /src/components/Charts/GaugeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/GaugeChart.tsx -------------------------------------------------------------------------------- /src/components/Charts/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/LineChart.tsx -------------------------------------------------------------------------------- /src/components/Charts/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/PieChart.tsx -------------------------------------------------------------------------------- /src/components/Charts/RatioChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/RatioChart.tsx -------------------------------------------------------------------------------- /src/components/Charts/RingProgressChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/RingProgressChart.tsx -------------------------------------------------------------------------------- /src/components/Charts/SpaceChart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/SpaceChart.less -------------------------------------------------------------------------------- /src/components/Charts/SpaceChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Charts/SpaceChart.tsx -------------------------------------------------------------------------------- /src/components/DashboardCard/LineCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/DashboardCard/LineCard.tsx -------------------------------------------------------------------------------- /src/components/DashboardCard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/DashboardCard/index.less -------------------------------------------------------------------------------- /src/components/DashboardCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/DashboardCard/index.tsx -------------------------------------------------------------------------------- /src/components/DashboardSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/DashboardSelect/index.less -------------------------------------------------------------------------------- /src/components/DashboardSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/DashboardSelect/index.tsx -------------------------------------------------------------------------------- /src/components/GlobalFrequencySelect/index.module.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/GlobalFrequencySelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/GlobalFrequencySelect/index.tsx -------------------------------------------------------------------------------- /src/components/HostPortInput/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/HostPortInput/index.module.less -------------------------------------------------------------------------------- /src/components/HostPortInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/HostPortInput/index.tsx -------------------------------------------------------------------------------- /src/components/Icon/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Icon/index.less -------------------------------------------------------------------------------- /src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/Instruction/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Instruction/index.less -------------------------------------------------------------------------------- /src/components/Instruction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Instruction/index.tsx -------------------------------------------------------------------------------- /src/components/LanguageSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/LanguageSelect/index.less -------------------------------------------------------------------------------- /src/components/LanguageSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/LanguageSelect/index.tsx -------------------------------------------------------------------------------- /src/components/MetricCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/MetricCard/index.tsx -------------------------------------------------------------------------------- /src/components/MetricPopover/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/MetricPopover/index.module.less -------------------------------------------------------------------------------- /src/components/MetricPopover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/MetricPopover/index.tsx -------------------------------------------------------------------------------- /src/components/MetricsFilterPanel/FrequencySelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/MetricsFilterPanel/FrequencySelect.tsx -------------------------------------------------------------------------------- /src/components/MetricsFilterPanel/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/MetricsFilterPanel/index.module.less -------------------------------------------------------------------------------- /src/components/MetricsFilterPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/MetricsFilterPanel/index.tsx -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/ModalWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/ModalWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/Service/ServiceCard/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Service/ServiceCard/Card.tsx -------------------------------------------------------------------------------- /src/components/Service/ServiceCardEdit/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Service/ServiceCardEdit/index.less -------------------------------------------------------------------------------- /src/components/Service/ServiceCardEdit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Service/ServiceCardEdit/index.tsx -------------------------------------------------------------------------------- /src/components/Service/ServiceHeader/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Service/ServiceHeader/index.less -------------------------------------------------------------------------------- /src/components/Service/ServiceHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/Service/ServiceHeader/index.tsx -------------------------------------------------------------------------------- /src/components/ServiceMetricsFilterPanel/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/ServiceMetricsFilterPanel/index.module.less -------------------------------------------------------------------------------- /src/components/ServiceMetricsFilterPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/ServiceMetricsFilterPanel/index.tsx -------------------------------------------------------------------------------- /src/components/TimeSelect/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/TimeSelect/index.module.less -------------------------------------------------------------------------------- /src/components/TimeSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/components/TimeSelect/index.tsx -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constants'; 2 | -------------------------------------------------------------------------------- /src/config/locale/en-US/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/base.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/common.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/component.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/configServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/configServer.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/description.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/device.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/index.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/metric_description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/metric_description.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/rules.ts -------------------------------------------------------------------------------- /src/config/locale/en-US/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/en-US/service.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/base.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/common.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/component.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/configServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/configServer.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/description.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/device.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/index.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/metric_description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/metric_description.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/rules.ts -------------------------------------------------------------------------------- /src/config/locale/zh-CN/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/locale/zh-CN/service.ts -------------------------------------------------------------------------------- /src/config/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/rules.ts -------------------------------------------------------------------------------- /src/config/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/config/service.ts -------------------------------------------------------------------------------- /src/context/LanguageContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/context/LanguageContext.ts -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/context/index.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/index.module.less -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/Login/index.less -------------------------------------------------------------------------------- /src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Cards/DiskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Cards/DiskCard.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Cards/WaterLevelCard/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Cards/WaterLevelCard/index.module.less -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Cards/WaterLevelCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Cards/WaterLevelCard/index.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/CPUDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/CPUDetail.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/DiskDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/DiskDetail.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/LoadDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/LoadDetail.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/MemoryDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/MemoryDetail.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/NetworkDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/NetworkDetail.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/index.less -------------------------------------------------------------------------------- /src/pages/MachineDashboard/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/Detail/index.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/NodeResourceOverview/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/NodeResourceOverview/index.module.less -------------------------------------------------------------------------------- /src/pages/MachineDashboard/NodeResourceOverview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/NodeResourceOverview/index.tsx -------------------------------------------------------------------------------- /src/pages/MachineDashboard/defaultMachinePanelConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/defaultMachinePanelConfig.ts -------------------------------------------------------------------------------- /src/pages/MachineDashboard/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/index.module.less -------------------------------------------------------------------------------- /src/pages/MachineDashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MachineDashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/MainPage/Header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MainPage/Header/index.less -------------------------------------------------------------------------------- /src/pages/MainPage/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MainPage/Header/index.tsx -------------------------------------------------------------------------------- /src/pages/MainPage/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MainPage/index.less -------------------------------------------------------------------------------- /src/pages/MainPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MainPage/index.tsx -------------------------------------------------------------------------------- /src/pages/MainPage/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MainPage/routes.tsx -------------------------------------------------------------------------------- /src/pages/MetricDetail/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MetricDetail/index.module.less -------------------------------------------------------------------------------- /src/pages/MetricDetail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/MetricDetail/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/Detail/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/Detail/index.module.less -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/Detail/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/OverviewTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/OverviewTable.tsx -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/ServiceOverview/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/ServiceOverview/index.module.less -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/ServiceOverview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/ServiceOverview/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/defaultPanelConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/defaultPanelConfig.ts -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/index.module.less -------------------------------------------------------------------------------- /src/pages/ServiceDashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceDashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/ConfigInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/ConfigInfo/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/ConfigInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/ConfigInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/LeaderDistribution/dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/LeaderDistribution/dist/index.css -------------------------------------------------------------------------------- /src/pages/ServiceManage/LeaderDistribution/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/LeaderDistribution/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/LeaderDistribution/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/LeaderDistribution/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/LongTermTask/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/LongTermTask/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/LongTermTask/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/LongTermTask/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/Overview/dist/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/Overview/dist/index.module.css -------------------------------------------------------------------------------- /src/pages/ServiceManage/Overview/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/Overview/index.module.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/Overview/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/PartitionDistribution/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/PartitionDistribution/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/PartitionDistribution/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/PartitionDistribution/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/PartitionInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/PartitionInfo/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/PartitionInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/PartitionInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/SelectSpace/dist/index.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/ServiceManage/SelectSpace/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/SelectSpace/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/ServiceInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/ServiceInfo/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/ServiceInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/ServiceInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/VersionStatistic/VersionItem/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/VersionStatistic/VersionItem/index.less -------------------------------------------------------------------------------- /src/pages/ServiceManage/VersionStatistic/VersionItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/VersionStatistic/VersionItem/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/VersionStatistic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/VersionStatistic/index.tsx -------------------------------------------------------------------------------- /src/pages/ServiceManage/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/pages/ServiceManage/index.less -------------------------------------------------------------------------------- /src/requests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/requests/index.tsx -------------------------------------------------------------------------------- /src/static/iconfont/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/iconfont/iconfont.js -------------------------------------------------------------------------------- /src/static/images/Graphd-icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/Graphd-icon60.png -------------------------------------------------------------------------------- /src/static/images/Graphd-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/Graphd-image.png -------------------------------------------------------------------------------- /src/static/images/Meta-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/Meta-image.png -------------------------------------------------------------------------------- /src/static/images/Metad-icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/Metad-icon60.png -------------------------------------------------------------------------------- /src/static/images/Storage-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/Storage-image.png -------------------------------------------------------------------------------- /src/static/images/Storaged-icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/Storaged-icon60.png -------------------------------------------------------------------------------- /src/static/images/background_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/background_login.png -------------------------------------------------------------------------------- /src/static/images/nebula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/images/nebula_logo.png -------------------------------------------------------------------------------- /src/static/import.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/static/import.d.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/models/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/models/app.ts -------------------------------------------------------------------------------- /src/store/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/models/index.ts -------------------------------------------------------------------------------- /src/store/models/machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/models/machine.ts -------------------------------------------------------------------------------- /src/store/models/metric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/models/metric.ts -------------------------------------------------------------------------------- /src/store/models/nebula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/models/nebula.ts -------------------------------------------------------------------------------- /src/store/models/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/store/models/service.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/utils/EventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/EventBus.ts -------------------------------------------------------------------------------- /src/utils/HttpServiceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/HttpServiceManager.ts -------------------------------------------------------------------------------- /src/utils/chart/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/chart/chart.ts -------------------------------------------------------------------------------- /src/utils/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/dashboard.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/interface.ts -------------------------------------------------------------------------------- /src/utils/metric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/metric.ts -------------------------------------------------------------------------------- /src/utils/promQL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/promQL.ts -------------------------------------------------------------------------------- /src/utils/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/service.ts -------------------------------------------------------------------------------- /src/utils/stat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/stat.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /src/utils/versionFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/src/utils/versionFeature.ts -------------------------------------------------------------------------------- /startWebserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/startWebserver.js -------------------------------------------------------------------------------- /static/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/static/custom.json -------------------------------------------------------------------------------- /static/iconfont/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/static/iconfont/iconfont.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendors/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM centos:7 2 | WORKDIR /dashboard 3 | COPY . . -------------------------------------------------------------------------------- /vendors/config-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/vendors/config-release.yaml -------------------------------------------------------------------------------- /vendors/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/vendors/docker-compose.yaml -------------------------------------------------------------------------------- /vendors/gateway.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/vendors/gateway.conf -------------------------------------------------------------------------------- /vendors/nebula-stats-exporter/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/vendors/nebula-stats-exporter/config.yaml -------------------------------------------------------------------------------- /vendors/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/vendors/prometheus/prometheus.yml -------------------------------------------------------------------------------- /webserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesoft-inc/nebula-dashboard/HEAD/webserver.js --------------------------------------------------------------------------------