阅读rancher/ui 集群监控面板部分源码

2022-01-25 14:13:38 浏览数 (1)

点击一个集群 路由大概是这样的 https://server-namec/123/monitoring

根据app/router.js 得知, 目录 /authenticated/cluster 匹配 /c/:cluster_id

默认进入/authenticated/cluster/index触发

代码语言:javascript复制
redirect() {
    this.replaceWith('authenticated.cluster.monitoring.index');
}

进入到lib/monitoring/addon/index

最终

libmonitoringaddonindextemplate.hbs 便是集群监控面板的源码

使用的主要组件有 cluster-dashboard (libmonitoringaddoncomponentscluster-dashboardtemplate.hbs)

cluster-basic-info

nodes-live

k8s-component-status

cluster-dashboard-tabs

resource-event-list

所用主要组件基本都在 monitoring目录夹中

由于没有集群信息。缺少一个根据页面进行标识组件的图片。先凑活看吧,有人需要我再补。

0 人点赞