成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

如何構(gòu)建MySQL監(jiān)控平臺

這篇文章將為大家詳細講解有關(guān)如何構(gòu)建MySQL監(jiān)控平臺,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)建站憑借專業(yè)的設(shè)計團隊扎實的技術(shù)支持、優(yōu)質(zhì)高效的服務(wù)意識和豐厚的資源優(yōu)勢,提供專業(yè)的網(wǎng)站策劃、成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站優(yōu)化、軟件開發(fā)、網(wǎng)站改版等服務(wù),在成都10多年的網(wǎng)站建設(shè)設(shè)計經(jīng)驗,為成都近1000家中小型企業(yè)策劃設(shè)計了網(wǎng)站。

prometheus+grafana 對于現(xiàn)在這個時間點來說,相信很多同行都應(yīng)該已經(jīng)開始玩起來了,當仍然可能有一部分人可能還不知道prometheus+grafana 的存在,也可能還有一部分人雖然知道它的存在,但卻懶于動手,如果是這樣,那后面的內(nèi)容你可得打起精神來了,因為可能你會被grafana炫酷的視覺效果驚艷到。

讓我們一起了解一下吧。

首先,簡單介紹下prometheus+grafana 這對鴛鴦到底是什么:

prometheus 是由 SoundCloud 開發(fā)的開源監(jiān)控報警系統(tǒng)和時序列數(shù)據(jù)庫(TSDB),prometheus是一個監(jiān)控采集與數(shù)據(jù)存儲框架(監(jiān)控server端),具體采集什么數(shù)據(jù)依賴于具體的exporter(監(jiān)控client端),例如:采集MySQL的數(shù)據(jù)需要使用到mysql_exporter,prometheus調(diào)用mysql_expoter采集到mysql的監(jiān)控指標之后,把mysql_exporter采集到的數(shù)據(jù)存放到prometheus所在服務(wù)器的磁盤數(shù)據(jù)文件中保存。它的各個組件基本都是用 golang 編寫,對編譯和部署十分友好.并且沒有特殊依賴,基本都是獨立工作。以下是prometheus架構(gòu)圖(圖片來源:https://prometheus.io/docs/introduction/overview/) 

如何構(gòu)建MySQL監(jiān)控平臺

grafana是一個高顏值的監(jiān)控繪圖程序,也是一個可視化面板(Dashboard),grafana的厲害之處除了高顏值,還支持多種數(shù)據(jù)源(支持Graphite、zabbix、InfluxDB、Prometheus和OpenTSDB作為數(shù)據(jù)源)、支持靈活豐富的dashboard配置選項(例如:可以把多個實例的相同采集項配置在一個展示框里),使得相較于其他開源監(jiān)控系統(tǒng)來說更易用性,學(xué)習(xí)成本更低。從視覺上來說,比以往的任何開源的監(jiān)控系統(tǒng)都看起來要養(yǎng)眼很多,下面先看兩張監(jiān)控效果圖: 

如何構(gòu)建MySQL監(jiān)控平臺

如何構(gòu)建MySQL監(jiān)控平臺

相信審美還算正常的人都不會說上面兩張圖很丑吧,那么問題來了,我們該如何玩起來呢?下面就簡單為大家介紹如何快速搭建起來!

這里方便演示過程,我們準備了如下兩臺測試服務(wù)器

  • prometheus+grafana server端主機:10.10.30.165

  • MySQL 客戶端主機:10.10.20.14

1、安裝prometheus

1.1. 下載安裝包

對于prometheus,假設(shè)我們需要監(jiān)控MySQL,那么我們需要下載至少3個組件,如下:

  • prometheus程序包

  • node_exporter:監(jiān)控主機磁盤、內(nèi)存、CPU等硬件性能指標的采集程序包

  • mysql_exporter: 監(jiān)控mysql各種性能指標的采集程序包

下載鏈接(該頁面始終只有一個最新版本):https://prometheus.io/download/

  • 下載prometheus 

如何構(gòu)建MySQL監(jiān)控平臺

  • 下載node_exporter 

如何構(gòu)建MySQL監(jiān)控平臺

  • 下載mysqld_exporter 

如何構(gòu)建MySQL監(jiān)控平臺

  • PS:如果你還需要配置監(jiān)控告警,需要下載alertmanager程序包 

如何構(gòu)建MySQL監(jiān)控平臺

1.2. 解壓程序包

解壓prometheus

[root@localhost ~]# mkdir /data
[root@localhost ~]# tar xvf prometheus-2.1.0.linux-amd64.tar.gz -C /data/

   解壓exporter:由于prometheus主機自身也需要監(jiān)控,所以也至少需要解壓node_exporter包

[root@localhost ~]# tar xf node_exporter-0.15.2.linux-amd64.tar -C /root/
# 如果需要監(jiān)控mysql,則繼續(xù)解壓mysql_exporter
[root@localhost ~]# tar xf mysqld_exporter-0.10.0.linux-amd64.tar  -C /root/
1.3. 啟動prometheus

進入prometheus的工作目錄

[root@localhost ~]# cd /data/
[root@localhost data]# mv prometheus-2.1.0.linux-amd64/ prometheus
[root@localhost ~]# cd /data/prometheus

    配置 prometheus.yml配置文件

[root@localhost data]# cat prometheus.yml 
# my global config
global:
scrape_interval:    15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).
# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
- file_sd_configs:
- files:
- host.yml
job_name: Host
metrics_path: /metrics
relabel_configs:
- source_labels: [__address__]
regex: (.*)
target_label: instance
replacement: $1
- source_labels: [__address__]
regex: (.*)
target_label: __address__
replacement: $1:9100
- file_sd_configs:
files:
- mysql.yml
job_name: MySQL
metrics_path: /metrics
relabel_configs:
- source_labels: [__address__]
regex: (.*)
target_label: instance
replacement: $1
- source_labels: [__address__]
regex: (.*)
target_label: __address__
replacement: $1:9104
- job_name: prometheus
static_configs:
- targets:
- localhost:9090

 啟動prometheus進程,30d表示prometheus只保留30天以內(nèi)的數(shù)據(jù)

[root@localhost prometheus]# /data/prometheus/prometheus  --storage.tsdb.retention=30d &

如果是7.x系統(tǒng),可以按照如下方式配置service啟動腳本

# 修改WorkingDirectory參數(shù)為你的prometheus的工作目錄
[root@localhost prometheus]# cat /usr/lib/systemd/system/prometheus.service
[Unit]
Description=Prometheus instance
Wants=network-online.target
After=network-online.target
After=postgresql.service mariadb.service mysql.service
[Service]
User=root
Group=root
Type=simple
Restart=on-failure
WorkingDirectory=/data/prometheus/
RuntimeDirectory=prometheus
RuntimeDirectoryMode=0750
ExecStart=/data/prometheus/prometheus  --storage.tsdb.retention=30d --config.file=/data/prometheus/prometheus.yml
LimitNOFILE=10000
TimeoutStopSec=20
[Install]
WantedBy=multi-user.target

PS:prometheus默認的web訪問端口為9090,可以使用如下地址訪問http://10.10.30.165:9090

2、安裝grafana

前面說過,grafana是一個出圖展示框架,grafana根據(jù)grafana-dashboards來進行展示,grafana-dashboards就類似于grafana的出圖配置文件,根據(jù)在grafana-dashboards中的定義來確定在頁面中需要展示什么指標,需要如何展示等,需要分別對這兩個組件進行下載與安裝。

2.1. 下載安裝包

對于grafana來說,需要下載一個程序包,一個grafana-dashboards包

下載鏈接

grafana程序包:https://grafana.com/grafana/download 

如何構(gòu)建MySQL監(jiān)控平臺

grafana-dashboards包:https://github.com/percona/grafana-dashboards/releases 

如何構(gòu)建MySQL監(jiān)控平臺

2.2. 解壓程序包

解壓grafana

[root@localhost ~]# tar xf grafana-4.6.3.linux-x64.tar.gz -C /data/prometheus/
[root@localhost ~]# cd /data/prometheus
[root@localhost prometheus]# mv grafana-4.6.3/ grafana
2.3. 啟動grafana

進入grafana工作目錄,并啟動

[root@localhost ]# cd /data/prometheus/grafana
[root@localhost ]# ./bin/grafana-server

如果是7.x系統(tǒng),可以按照如下方式配置service啟動腳本

[root@localhost service]# cat /usr/lib/systemd/system/grafana-server.service
[Unit]
Description=Grafana instance
Documentation=http://docs.grafana.org
Wants=network-online.target
After=network-online.target
After=postgresql.service mariadb.service mysql.service
[Service]
User=root
Group=root
Type=simple
Restart=on-failure
WorkingDirectory=/data/prometheus/grafana
RuntimeDirectory=grafana
RuntimeDirectoryMode=0750
ExecStart=/data/prometheus/grafana/bin/grafana-server
LimitNOFILE=10000
TimeoutStopSec=20
[Install]
WantedBy=multi-user.target

打開grafana頁面(默認帳號和密碼:admin/admin,默認的端口為3000,通過地址:http://10.10.30.165:3000 訪問),配置數(shù)據(jù)來源。

如何構(gòu)建MySQL監(jiān)控平臺

指定prometheus地址,這里我們把grafana裝在了同一臺機器,直接使用127.0.0.1的地址配置即可,如下圖 

如何構(gòu)建MySQL監(jiān)控平臺

如何構(gòu)建MySQL監(jiān)控平臺

2.4. 在grafana中導(dǎo)入grafana-dashboards

解壓grafana-dashboards包,該包中提供了大量的json格式文件的grafana dashboards,根據(jù)需要自行選擇,我們這里需要監(jiān)控主機和MySQL,就選擇如下一些json文件。

[root@localhost ~]# tar xvf grafana-dashboards-1.6.1.tar.gz 
[root@localhost ~]# cd grafana-dashboards-1.6.1
[root@localhost grafana-dashboards-1.6.1]# updatedb 
[root@localhost grafana-dashboards-1.6.1]# locate json |grep dashboards/
............
/root/grafana-dashboards-1.6.1/dashboards/CPU_Utilization_Details_Cores.json
/root/grafana-dashboards-1.6.1/dashboards/Disk_Performance.json
/root/grafana-dashboards-1.6.1/dashboards/Disk_Space.json
............
/root/grafana-dashboards-1.6.1/dashboards/MySQL_InnoDB_Metrics.json
/root/grafana-dashboards-1.6.1/dashboards/MySQL_InnoDB_Metrics_Advanced.json
............
/root/grafana-dashboards-1.6.1/dashboards/MySQL_Overview.json
/root/grafana-dashboards-1.6.1/dashboards/MySQL_Performance_Schema.json
............
/root/grafana-dashboards-1.6.1/dashboards/MySQL_Replication.json
/root/grafana-dashboards-1.6.1/dashboards/MySQL_Table_Statistics.json
............
/root/grafana-dashboards-1.6.1/dashboards/Summary_Dashboard.json
/root/grafana-dashboards-1.6.1/dashboards/System_Overview.json
............

    在grafana頁面中,導(dǎo)入需要的json文件 

如何構(gòu)建MySQL監(jiān)控平臺

如何構(gòu)建MySQL監(jiān)控平臺

如何構(gòu)建MySQL監(jiān)控平臺

   在彈出的窗口中選擇你需要導(dǎo)入的json文件

如何構(gòu)建MySQL監(jiān)控平臺

然后,如果你的grafana中已經(jīng)添加過主機,此時,就可以看到相應(yīng)的json dashboard監(jiān)控數(shù)據(jù) 

如何構(gòu)建MySQL監(jiān)控平臺

至此,prometheus+grafana的基礎(chǔ)架構(gòu)(server端)已經(jīng)搭建好了,現(xiàn)在,你可以去給他們添加監(jiān)控節(jié)點了(client端)

3、監(jiān)控節(jié)點部署

3.1. 添加主機監(jiān)控

以添加prometheus主機(10.10.30.165)為例進行說明

解壓exporter壓縮包

[root@localhost ~]# tar xf node_exporter-0.15.2.linux-amd64.tar 
[root@localhost ~]# mv node_exporter-0.15.2.linux-amd64 node_exporter

 啟動node_exporter程序

[root@localhost ~]# cd node_exporter
[root@localhost node_exporter]# nohup ./node_exporter &

配置prometheus主機監(jiān)控配置列表文件,由于之前主配置文件prometheus.yml 中已經(jīng)定義了監(jiān)控主機的配置文件host.yml,這里只需要把主機IP信息填入即可動態(tài)生效

[root@localhost node_exporter]# cat /data/prometheus/host.yml
- labels:
service: test
targets:
- 10.10.30.165

然后,在grafana頁面中就可以看到你配置的主機

如何構(gòu)建MySQL監(jiān)控平臺

PS:如果該文件中已經(jīng)配置過lables且不需要使用獨立的service標簽進行標記,則新添加的實例的IP可以直接放在同一個targets下,如下:

[root@localhost mysqld_exporter]# cat /data/prometheus/host.yml
- labels:
service: test
targets:
- 10.10.30.165
- 10.10.20.14
3.2. 添加MySQL監(jiān)控

添加MySQL監(jiān)控主機,這里以添加10.10.20.14為例進行說明

解壓exporter壓縮包

[root@localhost ~]# tar xf mysqld_exporter-0.10.0.linux-amd64.tar 
[root@localhost ~]# mv mysqld_exporter-0.10.0.linux-amd64 mysqld_exporter

配置監(jiān)控數(shù)據(jù)庫需要的主機IP、數(shù)據(jù)庫端口、數(shù)據(jù)庫賬號和密碼的環(huán)境變量(注意:該賬號需要單獨創(chuàng)建,需要對所有庫所有表至少具有PROCESS, REPLICATION CLIENT, SELECT權(quán)限)

[root@luoxiaobo-01 ~]# export DATA_SOURCE_NAME='admin:password@(10.10.20.14:3306)/'
[root@luoxiaobo-01 ~]# echo "export DATA_SOURCE_NAME='admin:password@(10.10.20.14:3306)/'" >> /etc/profile

啟動exporter

# 由于目前最新的版本默認關(guān)閉了大量的mysql采集項,需要顯式使用相應(yīng)的選項開啟(截止到寫稿時間,最新的開發(fā)版本可以通過prometheus端的配置項讓exporter端生效,而無需再exporter中使用大量的啟動選項開啟)
[root@localhost ~]# cd mysqld_exporter
[root@localhost mysqld_exporter]# nohup ./mysqld_exporter --collect.info_schema.processlist --collect.info_schema.innodb_tablespaces --collect.info_schema.innodb_metrics  --collect.perf_schema.tableiowaits --collect.perf_schema.indexiowaits --collect.perf_schema.tablelocks --collect.engine_innodb_status --collect.perf_schema.file_events --collect.info_schema.processlist --collect.binlog_size --collect.info_schema.clientstats --collect.perf_schema.eventswaits &

配置prometheus MySQL監(jiān)控配置列表文件,由于之前主配置文件prometheus.yml 中已經(jīng)定義了監(jiān)控主機的配置文件mysql.yml,這里只需要把主機IP信息填入即可動態(tài)生效

[root@localhost mysqld_exporter]# cat /data/prometheus/host.yml
- labels:
service: test
targets:
- 10.10.30.165
- 10.10.20.14

然后,在grafana頁面中就可以看到你配置的MySQL實例 

如何構(gòu)建MySQL監(jiān)控平臺

PS:如果該文件中已經(jīng)配置過lables且不需要使用獨立的service標簽進行標記,則新添加的實例的IP可以直接放在同一個targets下,如下:

[root@localhost mysqld_exporter]# cat /data/prometheus/mysql.yml
- labels:
service: test
targets:
- 10.10.30.165
- 10.10.20.14
3.3. grafana頁面dashboard切換

根據(jù)需要切換監(jiān)控模板 

如何構(gòu)建MySQL監(jiān)控平臺

如何構(gòu)建MySQL監(jiān)控平臺

然后,就能看到你想要的數(shù)據(jù) 

如何構(gòu)建MySQL監(jiān)控平臺

關(guān)于“如何構(gòu)建MySQL監(jiān)控平臺”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

新聞標題:如何構(gòu)建MySQL監(jiān)控平臺
本文路徑:http://jinyejixie.com/article44/ggeohe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計公司、網(wǎng)站策劃、網(wǎng)站內(nèi)鏈、小程序開發(fā)做網(wǎng)站、域名注冊

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

手機網(wǎng)站建設(shè)
皮山县| 德保县| 隆林| 辉南县| 玛沁县| 当涂县| 乌拉特后旗| 白银市| 化州市| 张掖市| 吉林市| 盐源县| 灵寿县| 和硕县| 盐池县| 阿图什市| 江华| 赫章县| 安化县| 乃东县| 易门县| 峡江县| 门头沟区| 临漳县| 长武县| 安阳县| 巴彦县| 涞源县| 襄城县| 井冈山市| 平谷区| 赤壁市| 玛沁县| 盐城市| 海晏县| 荃湾区| 陈巴尔虎旗| 湘乡市| 天全县| 黎城县| 莫力|