Browse Source

disable fetching alertmanagers on status page in agent mode

Signed-off-by: Robbie Lankford <robert.lankford@grafana.com>
pull/9941/head
Robbie Lankford 3 years ago
parent
commit
6df47766b2
No known key found for this signature in database
GPG Key ID: 54F7F51936239E12
  1. 2
      web/ui/react-app/src/App.tsx
  2. 39
      web/ui/react-app/src/pages/status/Status.tsx

2
web/ui/react-app/src/App.tsx

@ -103,7 +103,7 @@ const App: FC<AppProps> = ({ consolesLink, agentMode }) => {
<ServiceDiscoveryPage /> <ServiceDiscoveryPage />
</Route> </Route>
<Route path="/status"> <Route path="/status">
<StatusPage /> <StatusPage agentMode={agentMode} />
</Route> </Route>
<Route path="/tsdb-status"> <Route path="/tsdb-status">
<TSDBStatusPage /> <TSDBStatusPage />

39
web/ui/react-app/src/pages/status/Status.tsx

@ -83,28 +83,35 @@ const StatusWithStatusIndicator = withStatusIndicator(StatusContent);
StatusContent.displayName = 'Status'; StatusContent.displayName = 'Status';
const Status: FC = () => { const StatusResult: FC<{ fetchPath: string; title: string; agentMode: boolean }> = ({ fetchPath, title, agentMode }) => {
const { response, isLoading, error } = useFetch(fetchPath);
return (
<StatusWithStatusIndicator
key={title}
data={response.data}
title={title}
isLoading={isLoading}
error={error}
componentTitle={title}
/>
);
};
const Status: FC<{ agentMode: boolean }> = ({ agentMode }) => {
const pathPrefix = usePathPrefix(); const pathPrefix = usePathPrefix();
const path = `${pathPrefix}/${API_PATH}`; const path = `${pathPrefix}/${API_PATH}`;
return ( return (
<> <>
{[ {[
{ fetchResult: useFetch<Record<string, string>>(`${path}/status/runtimeinfo`), title: 'Runtime Information' }, { fetchPath: `${path}/status/runtimeinfo`, title: 'Runtime Information' },
{ fetchResult: useFetch<Record<string, string>>(`${path}/status/buildinfo`), title: 'Build Information' }, { fetchPath: `${path}/status/buildinfo`, title: 'Build Information' },
{ fetchResult: useFetch<Record<string, string>>(`${path}/alertmanagers`), title: 'Alertmanagers' }, { fetchPath: `${path}/alertmanagers`, title: 'Alertmanagers' },
].map(({ fetchResult, title }) => { ].map(({ fetchPath, title }) => {
const { response, isLoading, error } = fetchResult; if (agentMode && title === 'Alertmanagers') {
return ( return null;
<StatusWithStatusIndicator }
key={title} return <StatusResult fetchPath={fetchPath} title={title} agentMode={agentMode} />;
data={response.data}
title={title}
isLoading={isLoading}
error={error}
componentTitle={title}
/>
);
})} })}
</> </>
); );

Loading…
Cancel
Save