Koordinator-NodeInfoCollector

Run

每秒执行一次

func (n *nodeInfoCollector) Run(stopCh <-chan struct{
   }) {
   
    go wait.Until(n.collectNodeInfo, n.collectInterval, stopCh)
}

collectNodeInfo()

  • 采集node cpu信息
  • 采集node numa信息
func (n *nodeInfoCollector) collectNodeInfo() {
   
    started := time.Now()
    err := n.collectNodeCPUInfo()
    if err != nil {
   
        klog.Warningf("failed to collect node CPU info, err: %s", err)
        return
    }
    err = n.collectNodeNUMAInfo()
    if err != nil {
   
        klog.Warningf("failed to collect node NUMA info, err: %s", err)
        return
    }
    n.started.Store(true)
    klog.V(4).Infof("collect node info finished, elapsed %s", time.Since(started).String())
}

collectNodeCPUInfo()

  • 采集和组装NodeCpuInfo对象
  • 缓存到key为node_cpu_info
  • 记录到metric,collect_node_cpu_info_status:status=successed
func (n *nodeInfoCollector) collectNodeCPUInfo() error {
   
    klog.V(6).Info("start collect node cpu info")
    localCPUInfo, err := koordletutil.GetLocalCPUInfo()
    if err != nil {
   
        metrics.RecordCollectNodeCPUInfoStatus(err)
        return err
    }
    nodeCPUInfo := &metriccache.NodeCPUInfo{
   
        BasicInfo:      localCPUInfo.BasicInfo,
        ProcessorInfos: localCPUInfo.ProcessorInfos,
        TotalInfo:      localCPUInfo.TotalInfo,
    }
    klog.V(6).Infof("collect cpu info finished, info: %+v", nodeCPUInfo)
    n.storage.Set(metriccache.NodeCPUInfoKey, nodeCPUInfo)
    klog.V(4).Infof("collectNodeCPUInfo finished, processors num %v", len(nodeCPUInfo.ProcessorInfos))
    metrics.RecordCollectNodeCPUInfoStatus(nil
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值