2019-12-09 14:42:59 -08:00
|
|
|
import Alerts from './alerts/Alerts';
|
2020-01-14 10:34:48 -08:00
|
|
|
import Config from './config/Config';
|
|
|
|
import Flags from './flags/Flags';
|
|
|
|
import Rules from './rules/Rules';
|
2020-02-03 06:14:25 -08:00
|
|
|
import ServiceDiscovery from './serviceDiscovery/Services';
|
2020-01-14 10:34:48 -08:00
|
|
|
import Status from './status/Status';
|
2019-11-11 13:42:24 -08:00
|
|
|
import Targets from './targets/Targets';
|
2020-01-14 10:34:48 -08:00
|
|
|
import PanelList from './graph/PanelList';
|
|
|
|
import TSDBStatus from './tsdbStatus/TSDBStatus';
|
2021-06-15 13:37:16 -07:00
|
|
|
import { withStartingIndicator } from '../components/withStartingIndicator';
|
2019-10-27 14:03:39 -07:00
|
|
|
|
2021-06-15 13:37:16 -07:00
|
|
|
const AlertsPage = withStartingIndicator(Alerts);
|
|
|
|
const ConfigPage = withStartingIndicator(Config);
|
|
|
|
const FlagsPage = withStartingIndicator(Flags);
|
|
|
|
const RulesPage = withStartingIndicator(Rules);
|
|
|
|
const ServiceDiscoveryPage = withStartingIndicator(ServiceDiscovery);
|
|
|
|
const StatusPage = withStartingIndicator(Status);
|
|
|
|
const TSDBStatusPage = withStartingIndicator(TSDBStatus);
|
|
|
|
const TargetsPage = withStartingIndicator(Targets);
|
|
|
|
const PanelListPage = withStartingIndicator(PanelList);
|
|
|
|
|
|
|
|
// prettier-ignore
|
|
|
|
export {
|
|
|
|
AlertsPage,
|
|
|
|
ConfigPage,
|
|
|
|
FlagsPage,
|
|
|
|
RulesPage,
|
|
|
|
ServiceDiscoveryPage,
|
|
|
|
StatusPage,
|
|
|
|
TSDBStatusPage,
|
|
|
|
TargetsPage,
|
|
|
|
PanelListPage
|
|
|
|
};
|