open-falcon-hbs学习

open-falcon-hbs

标签(空格分隔): go falcon


主要功能

  • 处理agent心跳请求,填充host表

  • ip白名单下发所有agent

  • 下发执行插件信息

  • 下发监控端口、进程

  • 缓存监控策略

模块结构

内存数据Map结构

  • HostMap:
    (hostname,hostId int)

  • HostGroupsMap:
    (hostId,groupsId []int)

  • GroupPlugins:
    (groupId,pluginsPath []string)

  • GroupTemplates:
    (groupId,templatesID []int)

  • TemplateCache:
    (templateId,Template)

type Template struct {
    Id       int    `json:"id"`
    Name     string `json:"name"`
    ParentId int    `json:"parentId"`
    ActionId int    `json:"actionId"`
    Creator  string `json:"creator"`
}
  • Strategies:
    (strategryID,Strategry)

type Strategy struct {
    Id         int               `json:"id"`
    Metric     string            `json:"metric"`
    Tags       map[string]string `json:"tags"`
    Func       string            `json:"func"`       // e.g. max(#3) all(#3)
    Operator   string            `json:"operator"`   // e.g. < !=
    RightValue float64           `json:"rightValue"` // critical value
    MaxStep    int               `json:"maxStep"`
    Priority   int               `json:"priority"`
    Note       string            `json:"note"`
    Tpl        *Template         `json:"tpl"`
}
  • HostTemplates:
    (hostID,templatesID []int)

  • ExpressionCache:
    (expressionId,[] Expression)

type Expression struct {
    Id         int               `json:"id"`
    Metric     string            `json:"metric"`
    Tags       map[string]string `json:"tags"`
    Func       string            `json:"func"`       // e.g. max(#3) all(#3)
    Operator   string            `json:"operator"`   // e.g. < !=
    RightValue float64           `json:"rightValue"` // critical value
    MaxStep    int               `json:"maxStep"`
    Priority   int               `json:"priority"`
    Note       string            `json:"note"`
    ActionId   int               `json:"actionId"`
}
  • MonitoredHosts:
    (hostID,Host)

type Host struct {
    Id   int
    Name string
}

DB和Cache

rows,err = DB.Query(sql)
if err != nil {
    log.Println("ERROR:",err)
    return err
}
…
defer DB.Close()
for rows.Next(){
    …
    err = rows.Scan(&id,&hostname)
    if err != nil {
        log.Println("ERROR:",err)
        continue
    }
    …
}
  • 缓存策略
    初始运行时从portalDB中读取数据结构数据存于内存中,然后每分钟执行一次portalDB查询(与初始运行操作一致)更新数据到内存中。

  • 插件策略

  1. plugins update request 包含hostname和checksum(checksum初始为空),HBS收到request后从portalDB中读取插件路径信息,排序后对路径取MD5形成checksum,与agent请求的checksum对比,相同则返回空不进行plugins更新,否则返回插件信息,agent收到后更新插件并定期执行插件

RPC实现方式

RPC服务可通过HTTP,TCP和JSON的方式建立Sever和Client;Hbs的RPC服务端通过JSON方式实现,可注册多个client,实现相关接口,供agent和judge调用

相关文章

程序目录结构 简单实现,用户登录后返回一个jwt的token,下次请求带上token请求用户信息接口并返回信息...
本篇博客的主要内容是用go写一个简单的Proof-of-Work共识机制,不涉及到网络通信环节,只是一个本地的简...
简介 默克尔树(MerkleTree)是一种典型的二叉树结构,其主要特点为: 最下面的叶节点包含存储数据或其...
接下来学习并发编程, 并发编程是go语言最有特色的地方, go对并发编程是原生支持. goroutine是go中最近本...
先普及一下, 什么是广度优先搜索 广度优先搜索类似于树的层次遍历。从图中的某一顶点出发,遍历每一个顶...
第一天: 接口的定义和实现 第二天: 一. go语言是面向接口编程. 在学习继承的时候说过, go语言只有封装,...