images\cherry_red.png1 Prometheus
      images\cherry_blue.png1.1 监控系统设计
         images\cherry_orange.png1.1.1 框架结构
            images\cherry_cyan.png1.1.1.1 储存形式
            images\cherry_cyan.png1.1.1.2 服务发现
            images\cherry_cyan.png1.1.1.3 报警绘图
      images\cherry_blue.png1.2 监控系统部署
         images\cherry_orange.png1.2.1 启动参数
         images\cherry_orange.png1.2.2 配置文件
         images\cherry_orange.png1.2.3 node_exporter
      images\cherry_blue.png1.3 数据采集编写
         images\cherry_orange.png1.3.1 数据采集形式分类
         images\cherry_orange.png1.3.2 监控数据分析/算法
         images\cherry_orange.png1.3.3 监控稳定测试
      images\cherry_blue.png1.4 监控自动化
      images\cherry_blue.png1.5 监控图形化展示
         images\cherry_orange.png1.5.1 配置文件展示
      images\cherry_blue.png1.6 监控数据格式
         images\cherry_orange.png1.6.1 metrics
         images\cherry_orange.png1.6.2 k/v数据形式
         images\cherry_orange.png1.6.3 主动模式exporter
         images\cherry_orange.png1.6.4 被动模式pushgateway
      images\cherry_blue.png1.7 监控实例
         images\cherry_orange.png1.7.1 CPU使用率
            images\cherry_cyan.png1.7.1.1 公式拆分讲解
      images\cherry_blue.png1.8 函数
         images\cherry_orange.png1.8.1 increase
         images\cherry_orange.png1.8.2 sum
         images\cherry_orange.png1.8.3 by (instance)
         images\cherry_orange.png1.8.4 rate
         images\cherry_orange.png1.8.5 topk
         images\cherry_orange.png1.8.6 count
      images\cherry_blue.png1.9 标签
      images\cherry_blue.png1.10 监控数据采集脚本开发
gauges

简单的返回值,瞬时状态

例:待处理队列中任务个数,CPU,内存使用量

随机时间的推移,不断的瞬时,没有规则变化的


counters
计数器,从数据量 0 开始累积计算,理想状态下,只能是永远的增长,不会降低

例:用户访问量的采样数据,用户事件统计

特殊情况,采样数据清零?

histograms
统计数据分布情况,近似百分比估算数据

例: http_response_time 响应时间

统计总的平均值,不可取,不适宜某时间段,特殊时间等
基于histogram算法函数

某状态百分比用户等