import React, { Fragment, FC } from 'react'; import { RouteComponentProps } from '@reach/router'; import { Table } from 'reactstrap'; import { withStatusIndicator } from '../../components/withStatusIndicator'; import { useFetch } from '../../hooks/useFetch'; import PathPrefixProps from '../../types/PathPrefixProps'; interface StatusPageProps { data: Record; title: string; } export const statusConfig: Record< string, { title?: string; customizeValue?: (v: any, key: string) => any; customRow?: boolean; skip?: boolean } > = { startTime: { title: 'Start time', customizeValue: (v: string) => new Date(v).toUTCString() }, CWD: { title: 'Working directory' }, reloadConfigSuccess: { title: 'Configuration reload', customizeValue: (v: boolean) => (v ? 'Successful' : 'Unsuccessful'), }, lastConfigTime: { title: 'Last successful configuration reload' }, chunkCount: { title: 'Head chunks' }, timeSeriesCount: { title: 'Head time series' }, corruptionCount: { title: 'WAL corruptions' }, goroutineCount: { title: 'Goroutines' }, storageRetention: { title: 'Storage retention' }, activeAlertmanagers: { customRow: true, customizeValue: (alertMgrs: { url: string }[], key) => { return ( Endpoint {alertMgrs.map(({ url }) => { const { origin, pathname } = new URL(url); return ( {origin} {pathname} ); })} ); }, }, droppedAlertmanagers: { skip: true }, }; export const StatusContent: FC = ({ data, title }) => { return ( <>

{title}

{Object.entries(data).map(([k, v]) => { const { title = k, customizeValue = (val: any) => val, customRow, skip } = statusConfig[k] || {}; if (skip) { return null; } if (customRow) { return customizeValue(v, k); } return ( ); })}
{title} {customizeValue(v, title)}
); }; const StatusWithStatusIndicator = withStatusIndicator(StatusContent); StatusContent.displayName = 'Status'; const Status: FC = ({ pathPrefix = '' }) => { const path = `${pathPrefix}/api/v1`; return ( <> {[ { fetchResult: useFetch>(`${path}/status/runtimeinfo`), title: 'Runtime Information' }, { fetchResult: useFetch>(`${path}/status/buildinfo`), title: 'Build Information' }, { fetchResult: useFetch>(`${path}/alertmanagers`), title: 'Alertmanagers' }, ].map(({ fetchResult, title }) => { const { response, isLoading, error } = fetchResult; return ( ); })} ); }; export default Status;