這篇文章主要講解了“Grafana的安裝與配置教程”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Grafana的安裝與配置教程”吧!
創(chuàng)新互聯(lián)公司專(zhuān)注于長(zhǎng)島網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供長(zhǎng)島營(yíng)銷(xiāo)型網(wǎng)站建設(shè),長(zhǎng)島網(wǎng)站制作、長(zhǎng)島網(wǎng)頁(yè)設(shè)計(jì)、長(zhǎng)島網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造長(zhǎng)島網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供長(zhǎng)島網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。
一: 簡(jiǎn)介
Grafana 是一個(gè)開(kāi)源儀表盤(pán)工具,它可用于Graphite、InfluxDB與 OpenTSDB 一起使用。最新的版本還可以用于其他的數(shù)據(jù)源,比如Elasticsearch。
從本質(zhì)上說(shuō),它是一個(gè)功能豐富的Graphite-web 替代品,能幫助用戶(hù)更簡(jiǎn)單地創(chuàng)建和編輯儀表盤(pán)。它包含一個(gè)獨(dú)一無(wú)二的Graphite目標(biāo)解析器,從而可以簡(jiǎn)化度量和函數(shù)的編輯
二: 安裝與配置
1.安裝
yum install https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-4.5.2-1.x86_64.rpm
2.開(kāi)機(jī)啟動(dòng)配置
systemctl daemon-reload
systemctl start grafana-server
systemctl status grafana-server
3.相關(guān)文件目錄
Installs binary to /usr/sbin/grafana-server
Copies init.d script to /etc/init.d/grafana-server
Installs default file (environment vars) to /etc/sysconfig/grafana-server
Copies configuration file to /etc/grafana/grafana.ini
Installs systemd service (if systemd is available) name grafana-server.service
The default configuration uses a log file at /var/log/grafana/grafana.log
The default configuration specifies an sqlite3 database at /var/lib/grafana/grafana.db
4.應(yīng)用頁(yè)面 http://ip:3000 用戶(hù)名/密碼:admin/admin
三:配置
1.通過(guò)rpm安裝,配置信息在/etc/grafana/grafana.ini文件中,通過(guò)安裝包安裝配置文件在/usr/share/grafana/conf/目錄下。
通過(guò)啟動(dòng)日志可以看到,會(huì)讀取defaults.ini和grafana.ini的配置信息, 因此如果要修改訪問(wèn)端口(如3000改成3001)需要修改defaults.ini
配置文件中的信息,感覺(jué)有點(diǎn)奇怪。
2.dashboards配置
編輯配置文件/etc/grafana/grafana.ini,修改dashboards.json段落下兩個(gè)參數(shù)的值:
[dashboards.json]
enabled = true
path = /var/lib/grafana/dashboards
一定要去掉開(kāi)頭的分號(hào)(“;”)否則配置不起作用
安裝儀表盤(pán)(Percona提供),重新啟動(dòng)應(yīng)用
$ git clone https://github.com/percona/grafana-dashboards.git
$ cp -r grafana-dashboards/dashboards /var/lib/grafana/
systemctl restart grafana-server
四:同prometheus一起監(jiān)控MySQL
1.Prometheus安裝 請(qǐng)參考上一篇博文
2.配置文件
點(diǎn)擊(此處)折疊或打開(kāi)
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: prometheus
static_configs:
- targets: ['localhost:9090']
labels:
instance: prometheus
- job_name: linux
static_configs:
- targets: ['10.10.0.186:9100']
labels:
instance: db1
- job_name: mysql
static_configs:
- targets: ['10.10.0.186:9104']
labels:
instance: db1
3.部署node_exporters和mysqld_exporters
點(diǎn)擊(此處)折疊或打開(kāi)
$ wget https://github.com/prometheus/node_exporter/releases/download/v0.14.0/node_exporter-0.14.0.linux-amd64.tar.gz -O node_exporter-0.14.0.linux-amd64.tar.gz
$ wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.10.0/mysqld_exporter-0.10.0.linux-amd64.tar.gz -O mysqld_exporter-0.10.0.linux-amd64.tar.gz
$ mkdir /usr/local/services/prometheus_exporters
$ tar zxf node_exporter-0.14.0.linux-amd64.tar.gz -C /usr/local/services/prometheus_exporters --strip-components=1
$ tar zxf mysqld_exporter-0.10.0.linux-amd64.tar.gz -C /usr/local/services/prometheus_exporters --strip-components=1
$ cd /usr/local/services/prometheus_exporters
$ ./node_exporter
$ cd /usr/local/services/prometheus_exporters
$ cat << EOF > .my.cnf
[client]
user=prom
password=abc123
EOF
$ ./mysqld_exporter -config.my-cnf=".my.cnf"
查看Prometheus http://ip:9090
4.Grafana中創(chuàng)建Prometheus數(shù)據(jù)源
5.服務(wù)器監(jiān)控結(jié)果畫(huà)面
6.Mysql數(shù)據(jù)庫(kù)監(jiān)控結(jié)果畫(huà)面
感謝各位的閱讀,以上就是“Grafana的安裝與配置教程”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Grafana的安裝與配置教程這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!