+
{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 672d1ba2746..1b3cf7799d6 100644
--- a/public/app/features/admin/ServerStats.tsx
+++ b/public/app/features/admin/ServerStats.tsx
@@ -10,6 +10,7 @@ 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 = () => {
@@ -98,6 +99,7 @@ export const ServerStats = () => {
)}
{config.featureToggles.dashboardPreviews && config.featureToggles.dashboardPreviewsAdmin &&