Prometheus:Prometheus開發中間件Exporter


Prometheus 為開發這提供了客戶端工具,用於為自己的中間件開發Exporter,對接Prometheus 。

目前支持的客戶端

以go為例開發自己的Exporter

2.1依賴包的引入

工程結構

[root@node1 data]# tree exporter/ exporter/ ├── collector │ └── node.go ├── go.mod └── main.go 1 directory, 3 files 

引入依賴包

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

 
 


作者:doublegao
鏈接:https://www.jianshu.com/p/5db23a280e1d


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM