mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 04:00:09 -04:00
111 lines
2.7 KiB
JavaScript
111 lines
2.7 KiB
JavaScript
/* eslint-disable react/prop-types */
|
|
|
|
import { toPairs } from 'lodash';
|
|
import React from 'react';
|
|
|
|
import List from 'antd/lib/list';
|
|
import Card from 'antd/lib/card';
|
|
import { TimeAgo } from '@/components/TimeAgo';
|
|
|
|
import { toHuman, prettySize } from '@/filters';
|
|
|
|
export function General({ info }) {
|
|
info = toPairs(info);
|
|
return (
|
|
<Card title="General" size="small">
|
|
{(info.length === 0) && (
|
|
<div className="text-muted text-center">No data</div>
|
|
)}
|
|
{(info.length > 0) && (
|
|
<List
|
|
size="small"
|
|
itemLayout="vertical"
|
|
dataSource={info}
|
|
renderItem={([name, value]) => (
|
|
<List.Item extra={<span className="badge">{value}</span>}>
|
|
{toHuman(name)}
|
|
</List.Item>
|
|
)}
|
|
/>
|
|
)}
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
export function DatabaseMetrics({ info }) {
|
|
return (
|
|
<Card title="Redash Database" size="small">
|
|
{(info.length === 0) && (
|
|
<div className="text-muted text-center">No data</div>
|
|
)}
|
|
{(info.length > 0) && (
|
|
<List
|
|
size="small"
|
|
itemLayout="vertical"
|
|
dataSource={info}
|
|
renderItem={([name, size]) => (
|
|
<List.Item extra={<span className="badge">{prettySize(size)}</span>}>
|
|
{name}
|
|
</List.Item>
|
|
)}
|
|
/>
|
|
)}
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
export function Queues({ info }) {
|
|
info = toPairs(info);
|
|
return (
|
|
<Card title="Queues" size="small">
|
|
{(info.length === 0) && (
|
|
<div className="text-muted text-center">No data</div>
|
|
)}
|
|
{(info.length > 0) && (
|
|
<List
|
|
size="small"
|
|
itemLayout="vertical"
|
|
dataSource={info}
|
|
renderItem={([name, queue]) => (
|
|
<List.Item extra={<span className="badge">{queue.size}</span>}>
|
|
{name}
|
|
</List.Item>
|
|
)}
|
|
/>
|
|
)}
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
export function Manager({ info }) {
|
|
const items = info ? [(
|
|
<List.Item extra={<span className="badge"><TimeAgo date={info.lastRefreshAt} placeholder="n/a" /></span>}>
|
|
Last Refresh
|
|
</List.Item>
|
|
), (
|
|
<List.Item extra={<span className="badge"><TimeAgo date={info.startedAt} placeholder="n/a" /></span>}>
|
|
Started
|
|
</List.Item>
|
|
), (
|
|
<List.Item extra={<span className="badge">{info.outdatedQueriesCount}</span>}>
|
|
Outdated Queries Count
|
|
</List.Item>
|
|
)] : [];
|
|
|
|
return (
|
|
<Card title="Manager" size="small">
|
|
{!info && (
|
|
<div className="text-muted text-center">No data</div>
|
|
)}
|
|
{info && (
|
|
<List
|
|
size="small"
|
|
itemLayout="vertical"
|
|
dataSource={items}
|
|
renderItem={item => item}
|
|
/>
|
|
)}
|
|
</Card>
|
|
);
|
|
}
|