| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- "use client";
- import { fetchApi } from "@/app/_modules/func";
- import { PageContainer, ProCard } from "@ant-design/pro-components";
- import { Statistic, Divider, Table } from "antd";
- import type { TableProps } from "antd";
- import { useEffect, useState } from "react";
- import { useRouter } from "next/navigation";
- import {
- faMicrochip,
- faMemory,
- faServer,
- faMugHot,
- faHardDrive,
- } from "@fortawesome/free-solid-svg-icons";
- import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
- import { Col, Row } from "@/node_modules/antd/es/index";
- import CountUp from "react-countup";
- //查询API
- const queryAPI = "/api/monitor/server";
- export default function Server() {
- const { push } = useRouter();
- const [data, setData] = useState(undefined as any);
- const columns: TableProps["columns"] = [
- {
- title: "盘符路径",
- dataIndex: "dirName",
- key: "dirName",
- },
- {
- title: "文件系统",
- dataIndex: "sysTypeName",
- key: "sysTypeName",
- },
- {
- title: "盘符类型",
- dataIndex: "typeName",
- key: "typeName",
- },
- {
- title: "总大小",
- dataIndex: "total",
- key: "total",
- },
- {
- title: "可用大小",
- dataIndex: "free",
- key: "free",
- },
- {
- title: "已用大小",
- dataIndex: "used",
- key: "used",
- },
- {
- title: "已用百分比",
- dataIndex: "usage",
- key: "usage",
- render: (text) => <>{text}%</>,
- },
- ];
- //查询数据
- const queryData = async () => {
- const body = await fetchApi(queryAPI, push);
- if (body !== undefined) {
- if (body.code == 200) {
- console.log("data:", body.data);
- setData(body.data);
- }
- }
- };
- useEffect(() => {
- queryData();
- }, []);
- const formatterDecimal = (value: any) => (
- <CountUp end={parseFloat(value)} separator="," decimals={2} />
- );
- return (
- <PageContainer title={false}>
- {data !== undefined && (
- <ProCard gutter={[16, 16]} style={{ marginBlockStart: 16 }} wrap>
- <ProCard
- title={
- <>
- <FontAwesomeIcon icon={faMicrochip} />
- <span style={{ marginLeft: 6 }}>CPU</span>
- </>
- }
- direction="row"
- headerBordered
- bordered
- hoverable
- >
- <ProCard>
- <Statistic title="核心数" value={data.cpu.cpuNum} />
- </ProCard>
- <Divider type="vertical" />
- <ProCard>
- <Statistic
- title="用户使用率"
- value={data.cpu.used}
- suffix="%"
- formatter={formatterDecimal}
- />
- </ProCard>
- <Divider type="vertical" />
- <ProCard>
- <Statistic
- title="系统使用率"
- value={data.cpu.sys}
- suffix="%"
- formatter={formatterDecimal}
- />
- </ProCard>
- <Divider type="vertical" />
- <ProCard>
- <Statistic
- title="当前空闲率"
- value={data.cpu.free}
- suffix="%"
- formatter={formatterDecimal}
- />
- </ProCard>
- </ProCard>
- <ProCard
- title={
- <>
- <FontAwesomeIcon icon={faMemory} />
- <span style={{ marginLeft: 6 }}>内存</span>
- </>
- }
- direction="row"
- headerBordered
- bordered
- hoverable
- >
- <ProCard title="总内存">
- <Statistic title="内存" value={data.mem.total} suffix="G" />
- <Statistic title="JVM" value={data.jvm.total} suffix="M" />
- </ProCard>
- <ProCard title="已用内存">
- <Statistic
- title="内存"
- value={data.mem.used}
- suffix="G"
- formatter={formatterDecimal}
- />
- <Statistic
- title="JVM"
- value={data.jvm.used}
- suffix="M"
- formatter={formatterDecimal}
- />
- </ProCard>
- <ProCard title="剩余内存">
- <Statistic
- title="内存"
- value={data.mem.free}
- suffix="G"
- formatter={formatterDecimal}
- />
- <Statistic
- title="JVM"
- value={data.jvm.free}
- suffix="M"
- formatter={formatterDecimal}
- />
- </ProCard>
- <ProCard title="使用率">
- <Statistic
- title="内存"
- value={data.mem.usage}
- suffix="%"
- valueStyle={{
- color: data.mem.usage > 80 ? "#cf1322" : "inherit",
- }}
- formatter={formatterDecimal}
- />
- <Statistic
- title="JVM"
- value={data.jvm.usage}
- suffix="%"
- valueStyle={{
- color: data.jvm.usage > 80 ? "#cf1322" : "inherit",
- }}
- formatter={formatterDecimal}
- />
- </ProCard>
- </ProCard>
- <ProCard
- title={
- <>
- <FontAwesomeIcon icon={faServer} />
- <span style={{ marginLeft: 6 }}>服务器信息</span>
- </>
- }
- direction="row"
- headerBordered
- bordered
- hoverable
- >
- <ProCard>
- <Statistic title="服务器名称" value={data.sys.computerName} />
- </ProCard>
- <ProCard>
- <Statistic title="服务器IP" value={data.sys.computerIp} />
- </ProCard>
- <ProCard>
- <Statistic title="操作系统" value={data.sys.osName} />
- </ProCard>
- <ProCard>
- <Statistic title="系统架构" value={data.sys.osArch} />
- </ProCard>
- </ProCard>
- <ProCard
- title={
- <>
- <FontAwesomeIcon icon={faMugHot} />
- <span style={{ marginLeft: 6 }}>Java虚拟机信息</span>
- </>
- }
- direction="column"
- headerBordered
- bordered
- hoverable
- >
- <Row gutter={[0, 16]}>
- <Col span={12}>
- <Statistic title="名称" value={data.jvm.name} />
- </Col>
- <Col span={12}>
- <Statistic title="版本" value={data.jvm.version} />
- </Col>
- </Row>
- <Row gutter={[0, 16]}>
- <Col span={12}>
- <Statistic title="启动时间" value={data.jvm.startTime} />
- </Col>
- <Col span={12}>
- <Statistic title="运行时长" value={data.jvm.runTime} />
- </Col>
- </Row>
- <Row gutter={[0, 16]}>
- <Col span={24}>
- <Statistic title="安装路径" value={data.jvm.home} />
- </Col>
- </Row>
- <Row gutter={[0, 16]}>
- <Col span={24}>
- <Statistic title="项目路径" value={data.sys.userDir} />
- </Col>
- </Row>
- <Row gutter={[0, 16]}>
- <Col span={24}>
- <Statistic title="运行参数" value={data.jvm.inputArgs} />
- </Col>
- </Row>
- </ProCard>
- <ProCard
- title={
- <>
- <FontAwesomeIcon icon={faHardDrive} />
- <span style={{ marginLeft: 6 }}>磁盘状态</span>
- </>
- }
- headerBordered
- bordered
- hoverable
- >
- <Table columns={columns} dataSource={data.sysFiles} />
- </ProCard>
- </ProCard>
- )}
- </PageContainer>
- );
- }
|