-
{JSON.stringify(status, null, 2)}
- {Boolean(!status.running) &&
}
- {Boolean(status.running) && (
-
- )}
-
- );
-};
-
-const getStyles = (theme: GrafanaTheme2) => {
- return {
- wrap: css`
- border: 4px solid red;
- `,
- running: css`
- border: 4px solid green;
- `,
- };
-};
diff --git a/public/app/features/admin/ServerStats.tsx b/public/app/features/admin/ServerStats.tsx
index 1b3cf7799d6..672d1ba2746 100644
--- a/public/app/features/admin/ServerStats.tsx
+++ b/public/app/features/admin/ServerStats.tsx
@@ -10,7 +10,6 @@ import { contextSrv } from '../../core/services/context_srv';
import { Loader } from '../plugins/admin/components/Loader';
import { CrawlerStatus } from './CrawlerStatus';
-import { ExportStatus } from './ExportStatus';
import { getServerStats, ServerStat } from './state/apis';
export const ServerStats = () => {
@@ -99,7 +98,6 @@ export const ServerStats = () => {
)}
{config.featureToggles.dashboardPreviews && config.featureToggles.dashboardPreviewsAdmin &&