Prometheus 为开发这提供了客户端工具,用于为自己的中间件开发Exporter,对接Prometheus 。
目前支持的客户端
- Go
- Java
- Python
- Ruby
以go为例开发自己的Exporter
依赖包的引入
工程结构
[root@node1 data]# tree exporter/
exporter/
├── collector
│ └── node.go
├── go.mod
└── main.go
引入依赖包
require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.1 // indirect github.com/prometheus/client_golang v1.1.0 //借助gopsutil 采集主机指标 github.com/shirou/gopsutil v0.0.0-20190731134726-d80c43f9c984 )
main.go
package main import ( "cloud.io/exporter/collector" "fmt" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" "net/http" ) func init() { //注册自身采集器 prometheus.MustRegister(collector.NewNodeCollector()) } func main() { http.Handle("/metrics", promhttp.Handler()) if err := http.ListenAndServe(":8080", nil); err != nil { fmt.Printf("Error occur when start server %v", err) } }
为了能看清结果我将默认采集器注释,位置registry.go
func init() { //MustRegister(NewProcessCollector(ProcessCollectorOpts{})) //MustRegister(NewGoCollector()) }
/collector/node.go
代码中涵盖了Counter、Gauge、Histogram、Summary四种情况,一起混合使用的情况,具体的说明见一下代码中。
package collector import ( "github.com/prometheus/client_golang/prometheus" "github.com/shirou/gopsutil/host" "github.com/shirou/gopsutil/mem" "runtime" "sync" ) var reqCount int32 var hostname string type NodeCollector struct { requestDesc *prometheus.Desc //Counter nodeMetrics nodeStatsMetrics //混合方式 goroutinesDesc *prometheus.Desc //Gauge threadsDesc *prometheus.Desc //Gauge summaryDesc *prometheus.Desc //summary histogramDesc *prometheus.Desc //histogram mutex sync.Mutex } //混合方式数据结构 type nodeStatsMetrics []struct { desc *prometheus.Desc eval func(*mem.VirtualMemoryStat) float64 valType prometheus.ValueType } //初始化采集器 func NewNodeCollector() prometheus.Collector { host,_:= host.Info() hostname = host.Hostname return &NodeCollector{ requestDesc: prometheus.NewDesc( "total_request_count", "请求数", []string{"DYNAMIC_HOST_NAME"}, //动态标签名称 prometheus.Labels{"STATIC_LABEL1":"静态值可以放在这里","HOST_NAME":hostname}), nodeMetrics: nodeStatsMetrics{ { desc: prometheus.NewDesc( "total_mem", "内存总量", nil, nil), valType: prometheus.GaugeValue, eval: func(ms *mem.VirtualMemoryStat) float64 { return float64(ms.Total) / 1e9 }, }, { desc: prometheus.NewDesc( "free_mem", "内存空闲", nil, nil), valType: prometheus.GaugeValue, eval: func(ms *mem.VirtualMemoryStat) float64 { return float64(ms.Free) / 1e9 }, }, }, goroutinesDesc:prometheus.NewDesc( "goroutines_num", "协程数.", nil, nil), threadsDesc: prometheus.NewDesc( "threads_num", "线程数", nil, nil), summaryDesc: prometheus.NewDesc( "summary_http_request_duration_seconds", "summary类型", []string{"code", "method"}, prometheus.Labels{"owner": "example"}, ), histogramDesc: prometheus.NewDesc( "histogram_http_request_duration_seconds", "histogram类型", []string{"code", "method"}, prometheus.Labels{"owner": "example"}, ), } } // Describe returns all descriptions of the collector. //实现采集器Describe接口 func (n *NodeCollector) Describe(ch chan<- *prometheus.Desc) { ch <- n.requestDesc for _, metric := range n.nodeMetrics { ch <- metric.desc } ch <- n.goroutinesDesc ch <- n.threadsDesc ch <- n.summaryDesc ch <- n.histogramDesc } // Collect returns the current state of all metrics of the collector. //实现采集器Collect接口,真正采集动作 func (n *NodeCollector) Collect(ch chan<- prometheus.Metric) { n.mutex.Lock() ch <- prometheus.MustNewConstMetric(n.requestDesc,prometheus.CounterValue,0,hostname) vm, _ := mem.VirtualMemory() for _, metric := range n.nodeMetrics { ch <- prometheus.MustNewConstMetric(metric.desc, metric.valType, metric.eval(vm)) } ch <- prometheus.MustNewConstMetric(n.goroutinesDesc, prometheus.GaugeValue, float64(runtime.NumGoroutine())) num, _ := runtime.ThreadCreateProfile(nil) ch <- prometheus.MustNewConstMetric(n.threadsDesc, prometheus.GaugeValue, float64(num)) //模拟数据 ch <- prometheus.MustNewConstSummary( n.summaryDesc, 4711, 403.34, map[float64]float64{0.5: 42.3, 0.9: 323.3}, "200", "get", ) //模拟数据 ch <- prometheus.MustNewConstHistogram( n.histogramDesc, 4711, 403.34, map[float64]uint64{25: 121, 50: 2403, 100: 3221, 200: 4233}, "200", "get", ) n.mutex.Unlock() }
执行的结果http://127.0.0.1:8080/metrics
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]