mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-01-19 03:05:53 +08:00
Add redis info view
This commit is contained in:
parent
094e23f736
commit
5a83172784
@ -22,6 +22,7 @@ import LayersIcon from "@material-ui/icons/Layers";
|
|||||||
import SettingsIcon from "@material-ui/icons/Settings";
|
import SettingsIcon from "@material-ui/icons/Settings";
|
||||||
import ScheduleIcon from "@material-ui/icons/Schedule";
|
import ScheduleIcon from "@material-ui/icons/Schedule";
|
||||||
import FeedbackIcon from "@material-ui/icons/Feedback";
|
import FeedbackIcon from "@material-ui/icons/Feedback";
|
||||||
|
import DoubleArrowIcon from "@material-ui/icons/DoubleArrow";
|
||||||
import CloseIcon from "@material-ui/icons/Close";
|
import CloseIcon from "@material-ui/icons/Close";
|
||||||
import { AppState } from "./store";
|
import { AppState } from "./store";
|
||||||
import { paths } from "./paths";
|
import { paths } from "./paths";
|
||||||
@ -32,6 +33,7 @@ import DashboardView from "./views/DashboardView";
|
|||||||
import TasksView from "./views/TasksView";
|
import TasksView from "./views/TasksView";
|
||||||
import SettingsView from "./views/SettingsView";
|
import SettingsView from "./views/SettingsView";
|
||||||
import ServersView from "./views/ServersView";
|
import ServersView from "./views/ServersView";
|
||||||
|
import RedisInfoView from "./views/RedisInfoView";
|
||||||
|
|
||||||
const drawerWidth = 220;
|
const drawerWidth = 220;
|
||||||
|
|
||||||
@ -218,13 +220,18 @@ function App(props: ConnectedProps<typeof connector>) {
|
|||||||
<ListItemLink
|
<ListItemLink
|
||||||
to={paths.SERVERS}
|
to={paths.SERVERS}
|
||||||
primary="Servers"
|
primary="Servers"
|
||||||
icon={<LayersIcon />}
|
icon={<DoubleArrowIcon />}
|
||||||
/>
|
/>
|
||||||
<ListItemLink
|
<ListItemLink
|
||||||
to={paths.SCHEDULERS}
|
to={paths.SCHEDULERS}
|
||||||
primary="Schedulers"
|
primary="Schedulers"
|
||||||
icon={<ScheduleIcon />}
|
icon={<ScheduleIcon />}
|
||||||
/>
|
/>
|
||||||
|
<ListItemLink
|
||||||
|
to={paths.REDIS}
|
||||||
|
primary="Redis"
|
||||||
|
icon={<LayersIcon />}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</List>
|
</List>
|
||||||
<List>
|
<List>
|
||||||
@ -260,6 +267,9 @@ function App(props: ConnectedProps<typeof connector>) {
|
|||||||
<Route exact path={paths.SERVERS}>
|
<Route exact path={paths.SERVERS}>
|
||||||
<ServersView />
|
<ServersView />
|
||||||
</Route>
|
</Route>
|
||||||
|
<Route exact path={paths.REDIS}>
|
||||||
|
<RedisInfoView />
|
||||||
|
</Route>
|
||||||
<Route exact path={paths.SETTINGS}>
|
<Route exact path={paths.SETTINGS}>
|
||||||
<SettingsView />
|
<SettingsView />
|
||||||
</Route>
|
</Route>
|
||||||
|
@ -4,6 +4,7 @@ export const paths = {
|
|||||||
SERVERS: "/servers",
|
SERVERS: "/servers",
|
||||||
SCHEDULERS: "/schedulers",
|
SCHEDULERS: "/schedulers",
|
||||||
QUEUE_DETAILS: "/queues/:qname",
|
QUEUE_DETAILS: "/queues/:qname",
|
||||||
|
REDIS: "/redis",
|
||||||
};
|
};
|
||||||
|
|
||||||
export function queueDetailsPath(qname: string, taskStatus?: string): string {
|
export function queueDetailsPath(qname: string, taskStatus?: string): string {
|
||||||
|
34
ui/src/views/RedisInfoView.tsx
Normal file
34
ui/src/views/RedisInfoView.tsx
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import React from "react";
|
||||||
|
import Container from "@material-ui/core/Container";
|
||||||
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
|
import Grid from "@material-ui/core/Grid";
|
||||||
|
import Typography from "@material-ui/core/Typography";
|
||||||
|
|
||||||
|
const useStyles = makeStyles((theme) => ({
|
||||||
|
container: {
|
||||||
|
paddingTop: theme.spacing(4),
|
||||||
|
paddingBottom: theme.spacing(4),
|
||||||
|
},
|
||||||
|
paper: {
|
||||||
|
padding: theme.spacing(2),
|
||||||
|
display: "flex",
|
||||||
|
overflow: "auto",
|
||||||
|
flexDirection: "column",
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
function RedisInfoView() {
|
||||||
|
const classes = useStyles();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container maxWidth="lg" className={classes.container}>
|
||||||
|
<Grid container spacing={3}>
|
||||||
|
<Grid item xs={12}>
|
||||||
|
<Typography variant="h5">Redis Info</Typography>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default RedisInfoView;
|
@ -4,7 +4,7 @@ import Container from "@material-ui/core/Container";
|
|||||||
import { makeStyles } from "@material-ui/core/styles";
|
import { makeStyles } from "@material-ui/core/styles";
|
||||||
import Grid from "@material-ui/core/Grid";
|
import Grid from "@material-ui/core/Grid";
|
||||||
import Paper from "@material-ui/core/Paper";
|
import Paper from "@material-ui/core/Paper";
|
||||||
import { Typography } from "@material-ui/core";
|
import Typography from "@material-ui/core/Typography";
|
||||||
import Slider from "@material-ui/core/Slider/Slider";
|
import Slider from "@material-ui/core/Slider/Slider";
|
||||||
import { pollIntervalChange } from "../actions/settingsActions";
|
import { pollIntervalChange } from "../actions/settingsActions";
|
||||||
import { AppState } from "../store";
|
import { AppState } from "../store";
|
||||||
|
Loading…
Reference in New Issue
Block a user