溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

(12)使用prometheus+Grafana監(jiān)控ceph 集群

發(fā)布時間:2020-06-07 18:40:15 來源:網(wǎng)絡(luò) 閱讀:981 作者:TangYGao 欄目:系統(tǒng)運(yùn)維

在Ceph Luminous之前的版本,可以使用第三方的Prometheus exporterceph_exporter。 Ceph Luminous 12.2.1的mgr中自帶了Prometheus插件,內(nèi)置了 Prometheus ceph exporter,可以使用Ceph mgr內(nèi)置的exporter作為Prometheus的target。

(1)環(huán)境介紹

shell> ceph -v
ceph version 14.2.4 nautilus (stable)

(2)環(huán)境準(zhǔn)備

① grafana部署
shell> yum -y install grafana
shell> rpm -qa | grep grafana
grafana-6.3.6-1.x86_64
shell> netstat -tunlp | grep grafana #監(jiān)聽3000端口
http://10.10.204.38:3000 默認(rèn)密碼admin admin

② prometheus server 部署
查看該鏈接部署https://blog.51cto.com/7603402/2444837

(3)使用ceph mgr prometheus插件

①找到mgr active 主機(jī)
shell> ceph -s
mgr: admin(active, since 107m), standbys: node140

② 在ceph mgr admin節(jié)點(diǎn)上啟動插件
shell>ceph mgr module enable prometheus

③查看插件是否啟動
shell>netstat -nltp | grep mgr
tcp6 0 0 :::9283 :::* LISTEN 59954/ceph-mgr

④檢查是否已經(jīng)獲取到數(shù)據(jù)
shell> curl 127.0.0.1:9283/metrics #可以看到大量的返回值

(4)配置prometheus server 添加ceph集群 job

shell>vim prometheus.yml
#在scrape_configs: 配置項(xiàng)下添加,注意空格按yml 2 4 6 8 空格的規(guī)則

  - job_name: 'ceph_cluster'
    honor_labels: true
    scrape_interval: 5s
    static_configs:
      - targets: ['10.10.202.142:9283']
        labels:
          instance: ceph

① 重啟prometheus 服務(wù)
shell>systemctl restart prometheus

② 檢查prometheus服務(wù)器中是否添加成功
瀏覽器-》 http://x.x.x.x:9090 -》status -》Targets

(12)使用prometheus+Grafana監(jiān)控ceph 集群

(5)grafana添加展示

①瀏覽器登錄 grafana 管理界面
②添加data sources ,點(diǎn)擊configuration--》data sources
(12)使用prometheus+Grafana監(jiān)控ceph 集群
③ 添加dashboard

點(diǎn)擊HOME--》find dashboard on grafana.com
(12)使用prometheus+Grafana監(jiān)控ceph 集群

④ 搜索ceph的dashboard
(12)使用prometheus+Grafana監(jiān)控ceph 集群
⑤ 選擇合適的dashboard,記錄編號
(12)使用prometheus+Grafana監(jiān)控ceph 集群

⑥ Import dashboard 再選導(dǎo)入模板,輸入編號
(12)使用prometheus+Grafana監(jiān)控ceph 集群

(12)使用prometheus+Grafana監(jiān)控ceph 集群

⑦ 漂亮的dashboard即可展現(xiàn)出來了:
(12)使用prometheus+Grafana監(jiān)控ceph 集群

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI