123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <script lang="ts" setup>
- import { onBeforeMount, ref } from 'vue'
- import * as RedisApi from '@/api/infra/redis'
- import { DICT_TYPE } from '@/utils/dict'
- import * as echarts from 'echarts'
- import { RedisKeyInfo, RedisMonitorInfoVO } from '@/api/infra/redis/types'
- import {
- ElRow,
- ElCard,
- ElCol,
- ElTable,
- ElTableColumn,
- ElScrollbar,
- ElDescriptions,
- ElDescriptionsItem,
- ElMessage
- } from 'element-plus'
- const cache = ref<RedisMonitorInfoVO>()
- const keyListLoad = ref(true)
- const keyList = ref<RedisKeyInfo[]>([])
- // 基本信息
- const readRedisInfo = async () => {
- const data = await RedisApi.getCacheApi()
- cache.value = data
- loadEchartOptions(data.commandStats)
- const redisKeysInfo = await RedisApi.getKeyDefineListApi()
- keyList.value = redisKeysInfo
- keyListLoad.value = false //加载完成
- }
- // 图表
- const commandStatsRef = ref<HTMLElement>()
- const usedmemory = ref<HTMLDivElement>()
- const loadEchartOptions = (stats) => {
- const commandStats = [] as any[]
- const nameList = [] as string[]
- stats.forEach((row) => {
- commandStats.push({
- name: row.command,
- value: row.calls
- })
- nameList.push(row.command)
- })
- const commandStatsInstance = echarts.init(commandStatsRef.value!, 'macarons')
- commandStatsInstance.setOption({
- title: {
- text: '命令统计',
- left: 'center'
- },
- tooltip: {
- trigger: 'item',
- formatter: '{a} <br/>{b} : {c} ({d}%)'
- },
- legend: {
- type: 'scroll',
- orient: 'vertical',
- right: 30,
- top: 10,
- bottom: 20,
- data: nameList,
- textStyle: {
- color: '#a1a1a1'
- }
- },
- series: [
- {
- name: '命令',
- type: 'pie',
- radius: [20, 120],
- center: ['40%', '60%'],
- data: commandStats,
- roseType: 'radius',
- label: {
- show: true
- },
- emphasis: {
- label: {
- show: true
- },
- itemStyle: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- }
- }
- ]
- })
- const usedMemoryInstance = echarts.init(usedmemory.value!, 'macarons')
- usedMemoryInstance.setOption({
- title: {
- text: '内存使用情况',
- left: 'center'
- },
- tooltip: {
- formatter: '{b} <br/>{a} : ' + cache.value!.info.used_memory_human
- },
- series: [
- {
- name: '峰值',
- type: 'gauge',
- min: 0,
- max: 100,
- progress: {
- show: true
- },
- detail: {
- formatter: cache.value!.info.used_memory_human
- },
- data: [
- {
- value: parseFloat(cache.value!.info.used_memory_human),
- name: '内存消耗'
- }
- ]
- }
- ]
- })
- }
- const dialogVisible = ref(false)
- const keyTemplate = ref('')
- const cacheKeys = ref()
- const cacheForm = ref<{
- key: string
- value: string
- }>({
- key: '',
- value: ''
- })
- const openKeyTemplate = async (row: RedisKeyInfo) => {
- keyTemplate.value = row.keyTemplate
- cacheKeys.value = await RedisApi.getKeyListApi(row.keyTemplate)
- dialogVisible.value = true
- }
- const handleDeleteKey = async (row) => {
- RedisApi.deleteKeyApi(row)
- ElMessage.success('删除成功')
- }
- const handleDeleteKeys = async (row) => {
- RedisApi.deleteKeysApi(row)
- ElMessage.success('删除成功')
- }
- const handleKeyValue = async (row) => {
- const res = await RedisApi.getKeyValueApi(row)
- cacheForm.value = res
- }
- onBeforeMount(() => {
- readRedisInfo()
- })
- </script>
- <template>
- <el-scrollbar height="calc(100vh - 88px - 40px - 50px)">
- <el-row>
- <el-col :span="24" class="card-box" shadow="hover">
- <el-card>
- <el-descriptions title="基本信息" :column="6" border>
- <el-descriptions-item label="Redis版本 :">
- {{ cache?.info?.redis_version }}
- </el-descriptions-item>
- <el-descriptions-item label="运行模式 :">
- {{ cache?.info?.redis_mode == 'standalone' ? '单机' : '集群' }}
- </el-descriptions-item>
- <el-descriptions-item label="端口 :">
- {{ cache?.info?.tcp_port }}
- </el-descriptions-item>
- <el-descriptions-item label="客户端数 :">
- {{ cache?.info?.connected_clients }}
- </el-descriptions-item>
- <el-descriptions-item label="运行时间(天) :">
- {{ cache?.info?.uptime_in_days }}
- </el-descriptions-item>
- <el-descriptions-item label="使用内存 :">
- {{ cache?.info?.used_memory_human }}
- </el-descriptions-item>
- <el-descriptions-item label="使用CPU :">
- {{ cache?.info ? parseFloat(cache?.info?.used_cpu_user_children).toFixed(2) : '' }}
- </el-descriptions-item>
- <el-descriptions-item label="内存配置 :">
- {{ cache?.info?.maxmemory_human }}
- </el-descriptions-item>
- <el-descriptions-item label="AOF是否开启 :">
- {{ cache?.info?.aof_enabled == '0' ? '否' : '是' }}
- </el-descriptions-item>
- <el-descriptions-item label="RDB是否成功 :">
- {{ cache?.info?.rdb_last_bgsave_status }}
- </el-descriptions-item>
- <el-descriptions-item label="Key数量 :">
- {{ cache?.dbSize }}
- </el-descriptions-item>
- <el-descriptions-item label="网络入口/出口 :">
- {{ cache?.info?.instantaneous_input_kbps }}kps/
- {{ cache?.info?.instantaneous_output_kbps }}kps
- </el-descriptions-item>
- </el-descriptions>
- </el-card>
- </el-col>
- <el-col :span="12" style="margin-top: 10px">
- <el-card :gutter="12" shadow="hover">
- <div ref="commandStatsRef" style="height: 350px"></div>
- </el-card>
- </el-col>
- <el-col :span="12" style="margin-top: 10px">
- <el-card style="margin-left: 10px" :gutter="12" shadow="hover">
- <div ref="usedmemory" style="height: 350px"></div>
- </el-card>
- </el-col>
- </el-row>
- <el-row style="margin-top: 10px">
- <el-col :span="24" class="card-box" shadow="hover">
- <el-card>
- <el-table
- v-loading="keyListLoad"
- :data="keyList"
- row-key="id"
- @row-click="openKeyTemplate"
- >
- <el-table-column prop="keyTemplate" label="Key 模板" width="200" />
- <el-table-column prop="keyType" label="Key 类型" width="100" />
- <el-table-column prop="valueType" label="Value 类型" />
- <el-table-column prop="timeoutType" label="超时时间" width="200">
- <template #default="{ row }">
- <DictTag :type="DICT_TYPE.INFRA_REDIS_TIMEOUT_TYPE" :value="row?.timeoutType" />
- <span v-if="row?.timeout > 0">({{ row?.timeout / 1000 }} 秒)</span>
- </template>
- </el-table-column>
- <el-table-column prop="memo" label="备注" />
- </el-table>
- </el-card>
- </el-col>
- </el-row>
- </el-scrollbar>
- <XModal v-model="dialogVisible" :title="keyTemplate + ' 模板'" width="60%" maxHeight="800px">
- <el-row>
- <el-col :span="14" style="margin-top: 10px">
- <el-card shadow="always">
- <template #header>
- <div class="card-header">
- <span>键名列表</span>
- </div>
- </template>
- <el-table :data="cacheKeys" style="width: 100%" @row-click="handleKeyValue">
- <el-table-column label="缓存键名" align="center" :show-overflow-tooltip="true">
- <template #default="{ row }">
- {{ row }}
- </template>
- </el-table-column>
- <el-table-column label="操作" align="right" width="60">
- <template #default="{ row }">
- <el-button link type="primary" @click="handleDeleteKey(row)">
- <Icon icon="ep:delete" />
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </el-card>
- </el-col>
- <el-col :span="10" style="margin-top: 10px">
- <el-card shadow="always">
- <template #header>
- <div class="card-header">
- <span>缓存内容</span>
- <el-button
- link
- type="primary"
- @click="handleDeleteKeys(keyTemplate)"
- style="float: right; padding: 3px 0"
- >
- <Icon icon="ep:refresh" />清理全部
- </el-button>
- </div>
- </template>
- <el-descriptions :column="1">
- <el-descriptions-item label="缓存键名:">{{ cacheForm.key }}</el-descriptions-item>
- <el-descriptions-item label="缓存内容:">{{ cacheForm.value }}</el-descriptions-item>
- </el-descriptions>
- </el-card>
- </el-col>
- </el-row>
- </XModal>
- </template>
- <style scoped>
- .redis {
- height: 600px;
- max-height: 860px;
- }
- </style>
|