feat: 新增 redis 监控

This commit is contained in:
xlsea
2025-04-27 18:32:40 +08:00
parent 9edd78e581
commit 63b49f1d40
9 changed files with 762 additions and 2 deletions

View File

@ -0,0 +1,8 @@
import { request } from '@/service/request';
export function fetchGetMonitorCacheInfo() {
return request<Api.Monitor.CacheInfo>({
url: '/monitor/cache',
method: 'get'
});
}