GuoLei Song
GuoLei Song
```java @RequestMapping("/search-plugin") public List searchPlugins(@RequestParam("pluginName") String pluginName) { if (StringUtils.isEmpty(pluginName)) { // 返回全部 return arkMngService.fetchRegisteredPlugins(); } return arkMngService.fetchPluginsByName(pluginName); } ``` 此端代码为插件查询的逻辑,仅获取到了插件列表,插件关联到的应用实例信息没有被计算出来。导致默认列表展示和查询结果展示在应用实例数和关联应用展示部分不一致
目前 SOFADashboard 插件列表依赖前端分页方式,在展示上延迟较大的情况下会出现一定时间的页面空白,此处需要增加数据动态载入样式,并且需要基于后面分页
目前 SOFADashboard 仅支持基于插件维度的应用查看,在一定程度上基于插件维度的查看方式无法覆盖一些场景,如基于应用维度的插件管理能力
1、查看应用内存状态数据 2、健康检查状态信息 3、Info 信息 4、线程数量信息 5、mappings 6、线程状态 7、loggers 8、Environment
Previously , in the dynamic module management section, the file address was uniquely determined depending on the module name and version. as follows: > pluginName binding to address prefix ,...
Sofa-dashboard-front is based on antd and needs continuous optimization in function and UI