mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-08-23 22:28:43 +08:00
Support redis cluster
- Added `--redis-cluster-nodes` flag - Display cluster information in redis info page
This commit is contained in:
@@ -80,6 +80,18 @@ export interface RedisInfoResponse {
|
||||
address: string;
|
||||
info: RedisInfo;
|
||||
raw_info: string;
|
||||
cluster: boolean;
|
||||
|
||||
// following fields are set only when cluster=true
|
||||
raw_cluster_nodes: string;
|
||||
queue_locations: QueueLocation[] | null;
|
||||
}
|
||||
|
||||
// Describes location of a queue in cluster.
|
||||
export interface QueueLocation {
|
||||
queue: string; // queue name
|
||||
keyslot: number; // cluster keyslot
|
||||
nodes: string[]; // node addresses
|
||||
}
|
||||
|
||||
// Return value from redis INFO command.
|
||||
|
48
ui/src/components/QueueLocationTable.tsx
Normal file
48
ui/src/components/QueueLocationTable.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
import React from "react";
|
||||
import { makeStyles } from "@material-ui/core/styles";
|
||||
import Table from "@material-ui/core/Table";
|
||||
import TableBody from "@material-ui/core/TableBody";
|
||||
import TableCell from "@material-ui/core/TableCell";
|
||||
import TableContainer from "@material-ui/core/TableContainer";
|
||||
import TableHead from "@material-ui/core/TableHead";
|
||||
import TableRow from "@material-ui/core/TableRow";
|
||||
import { QueueLocation } from "../api";
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
table: {
|
||||
minWidth: 650,
|
||||
},
|
||||
}));
|
||||
|
||||
interface Props {
|
||||
queueLocations: QueueLocation[];
|
||||
}
|
||||
|
||||
export default function QueueLocationTable(props: Props) {
|
||||
const classes = useStyles();
|
||||
|
||||
return (
|
||||
<TableContainer>
|
||||
<Table className={classes.table} aria-label="queue location table">
|
||||
<TableHead>
|
||||
<TableRow>
|
||||
<TableCell>Queue</TableCell>
|
||||
<TableCell>KeySlot</TableCell>
|
||||
<TableCell>Node Addresses</TableCell>
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{props.queueLocations.map((loc) => (
|
||||
<TableRow key={loc.queue}>
|
||||
<TableCell component="th" scope="row">
|
||||
{loc.queue}
|
||||
</TableCell>
|
||||
<TableCell>{loc.keyslot}</TableCell>
|
||||
<TableCell>{loc.nodes.join(", ")}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</TableContainer>
|
||||
);
|
||||
}
|
@@ -4,7 +4,7 @@ import {
|
||||
GET_REDIS_INFO_SUCCESS,
|
||||
RedisInfoActionTypes,
|
||||
} from "../actions/redisInfoActions";
|
||||
import { RedisInfo } from "../api";
|
||||
import { QueueLocation, RedisInfo } from "../api";
|
||||
|
||||
interface RedisInfoState {
|
||||
loading: boolean;
|
||||
@@ -12,6 +12,9 @@ interface RedisInfoState {
|
||||
address: string;
|
||||
data: RedisInfo | null;
|
||||
rawData: string | null;
|
||||
cluster: boolean;
|
||||
rawClusterNodes: string | null;
|
||||
queueLocations: QueueLocation[] | null;
|
||||
}
|
||||
|
||||
const initialState: RedisInfoState = {
|
||||
@@ -20,6 +23,9 @@ const initialState: RedisInfoState = {
|
||||
address: "",
|
||||
data: null,
|
||||
rawData: null,
|
||||
cluster: false,
|
||||
rawClusterNodes: null,
|
||||
queueLocations: null,
|
||||
};
|
||||
|
||||
export default function redisInfoReducer(
|
||||
@@ -47,6 +53,9 @@ export default function redisInfoReducer(
|
||||
address: action.payload.address,
|
||||
data: action.payload.info,
|
||||
rawData: action.payload.raw_info,
|
||||
cluster: action.payload.cluster,
|
||||
rawClusterNodes: action.payload.raw_cluster_nodes,
|
||||
queueLocations: action.payload.queue_locations,
|
||||
};
|
||||
|
||||
default:
|
||||
|
@@ -13,6 +13,9 @@ import { getRedisInfoAsync } from "../actions/redisInfoActions";
|
||||
import { usePolling } from "../hooks";
|
||||
import { AppState } from "../store";
|
||||
import { timeAgoUnix } from "../utils";
|
||||
import { RedisInfo } from "../api";
|
||||
import QueueLocationTable from "../components/QueueLocationTable";
|
||||
import Link from "@material-ui/core/Link";
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
container: {
|
||||
@@ -28,6 +31,9 @@ function mapStateToProps(state: AppState) {
|
||||
redisInfo: state.redis.data,
|
||||
redisAddress: state.redis.address,
|
||||
redisInfoRaw: state.redis.rawData,
|
||||
redisClusterEnabled: state.redis.cluster,
|
||||
redisClusterNodesRaw: state.redis.rawClusterNodes,
|
||||
queueLocations: state.redis.queueLocations,
|
||||
pollInterval: state.settings.pollInterval,
|
||||
themePreference: state.settings.themePreference,
|
||||
};
|
||||
@@ -38,7 +44,15 @@ type Props = ConnectedProps<typeof connector>;
|
||||
|
||||
function RedisInfoView(props: Props) {
|
||||
const classes = useStyles();
|
||||
const { pollInterval, getRedisInfoAsync, redisInfo, redisInfoRaw } = props;
|
||||
const {
|
||||
pollInterval,
|
||||
getRedisInfoAsync,
|
||||
redisInfo,
|
||||
redisInfoRaw,
|
||||
redisClusterEnabled,
|
||||
redisClusterNodesRaw,
|
||||
queueLocations,
|
||||
} = props;
|
||||
usePolling(getRedisInfoAsync, pollInterval);
|
||||
|
||||
// Metrics to show
|
||||
@@ -56,101 +70,60 @@ function RedisInfoView(props: Props) {
|
||||
<>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h5" color="textPrimary">
|
||||
Redis Info
|
||||
</Typography>
|
||||
<Typography variant="subtitle1" color="textSecondary">
|
||||
Connected to: {props.redisAddress}
|
||||
{redisClusterEnabled ? "Redis Cluster Info" : "Redis Info"}
|
||||
</Typography>
|
||||
{!redisClusterEnabled && (
|
||||
<Typography variant="subtitle1" color="textSecondary">
|
||||
Connected to: {props.redisAddress}
|
||||
</Typography>
|
||||
)}
|
||||
</Grid>
|
||||
{redisInfo !== null && (
|
||||
{queueLocations && queueLocations.length > 0 && (
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Queue Location in Cluster
|
||||
</Typography>
|
||||
<QueueLocationTable queueLocations={queueLocations} />
|
||||
</Grid>
|
||||
)}
|
||||
{redisClusterNodesRaw && (
|
||||
<>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Server
|
||||
<Link
|
||||
href="https://redis.io/commands/cluster-nodes"
|
||||
target="_"
|
||||
>
|
||||
CLUSTER NODES
|
||||
</Link>{" "}
|
||||
Command Output
|
||||
</Typography>
|
||||
<SyntaxHighlighter language="yaml">
|
||||
{redisClusterNodesRaw}
|
||||
</SyntaxHighlighter>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Version"
|
||||
content={redisInfo.redis_version}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Uptime"
|
||||
content={`${redisInfo.uptime_in_days} days`}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={6} />
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Memory
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Used Memory"
|
||||
content={redisInfo.used_memory_human}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Peak Memory Used"
|
||||
content={redisInfo.used_memory_peak_human}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Memory Fragmentation Ratio"
|
||||
content={redisInfo.mem_fragmentation_ratio}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3} />
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Connections
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Connected Clients"
|
||||
content={redisInfo.connected_clients}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Connected Replicas"
|
||||
content={redisInfo.connected_slaves}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={6} />
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Persistence
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Last Save to Disk"
|
||||
content={timeAgoUnix(
|
||||
parseInt(redisInfo.rdb_last_save_time)
|
||||
)}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Number of Changes Since Last Dump"
|
||||
content={redisInfo.rdb_changes_since_last_save}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={6} />
|
||||
</>
|
||||
)}
|
||||
{redisInfoRaw !== null && (
|
||||
{redisInfo && !redisClusterEnabled && (
|
||||
<RedisMetricCards redisInfo={redisInfo} />
|
||||
)}
|
||||
{redisInfoRaw && (
|
||||
<>
|
||||
<Grid item xs={6}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
INFO Command Output
|
||||
{redisClusterEnabled ? (
|
||||
<Link
|
||||
href="https://redis.io/commands/cluster-info"
|
||||
target="_"
|
||||
>
|
||||
CLUSTER INFO
|
||||
</Link>
|
||||
) : (
|
||||
<Link href="https://redis.io/commands/info" target="_">
|
||||
INFO
|
||||
</Link>
|
||||
)}{" "}
|
||||
Command Output
|
||||
</Typography>
|
||||
<SyntaxHighlighter language="yaml">
|
||||
{redisInfoRaw}
|
||||
@@ -173,6 +146,86 @@ function RedisInfoView(props: Props) {
|
||||
);
|
||||
}
|
||||
|
||||
function RedisMetricCards(props: { redisInfo: RedisInfo }) {
|
||||
const { redisInfo } = props;
|
||||
return (
|
||||
<>
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Server
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard title="Version" content={redisInfo.redis_version} />
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Uptime"
|
||||
content={`${redisInfo.uptime_in_days} days`}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={6} />
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Memory
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard title="Used Memory" content={redisInfo.used_memory_human} />
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Peak Memory Used"
|
||||
content={redisInfo.used_memory_peak_human}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Memory Fragmentation Ratio"
|
||||
content={redisInfo.mem_fragmentation_ratio}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3} />
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Connections
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Connected Clients"
|
||||
content={redisInfo.connected_clients}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Connected Replicas"
|
||||
content={redisInfo.connected_slaves}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={6} />
|
||||
<Grid item xs={12}>
|
||||
<Typography variant="h6" color="textSecondary">
|
||||
Persistence
|
||||
</Typography>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Last Save to Disk"
|
||||
content={timeAgoUnix(parseInt(redisInfo.rdb_last_save_time))}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={3}>
|
||||
<MetricCard
|
||||
title="Number of Changes Since Last Dump"
|
||||
content={redisInfo.rdb_changes_since_last_save}
|
||||
/>
|
||||
</Grid>
|
||||
<Grid item xs={6} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
interface MetricCardProps {
|
||||
title: string;
|
||||
content: string;
|
||||
|
Reference in New Issue
Block a user