grafana部署安裝

部署grafana

在prometheus& grafana server節點部署grafana服務。json

1. 下載&安裝

複製代碼
# 下載 [root@prometheus ~]# cd /usr/local/src/ [root@prometheus src]# wget https://dl.grafana.com/oss/release/grafana-6.3.2-1.x86_64.rpm # 安裝 [root@prometheus src]# yum localinstall grafana-6.3.2-1.x86_64.rpm
複製代碼

2. 配置文件

配置文件位於/etc/grafana/grafana.ini,這裏暫時保持默認配置便可。vim

3. 設置開機啓動

[root@prometheus src]# systemctl enable grafana-server [root@prometheus src]# systemctl start grafana-server

4. 設置iptables

# grafana-server默認使用3000端口 [root@prometheus src]# vim /etc/sysconfig/iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 3000 -j ACCEPT [root@prometheus src]# service iptables restart

5. 添加數據源 

1)登錄

訪問:http://172.20.1.211:3000,默認帳號/密碼:admin/admintcp

2)添加數據源

在登錄首頁,點擊"Add data source"按鈕,跳轉到添加數據源頁面,配置以下:spa

Name: prometheus3d

Type: prometheusrest

URL: http://localhost:9090/code

Access: proxyserver

取消Default的勾選,其他默認,點擊"Add",以下:blog

在"Dashboards"頁簽下"import"自帶的模版,以下:ip

6. 導入dashboard

從grafana官網下載相關dashboaed到本地,如:https://grafana.com/dashboards/405

Grafana首頁-->左上角圖標-->Dashboard-->import

Upload已下載至本地的json文件(或者使用dashboard id,如這裏的405),以下:

數據源選擇"prometheus",即添加的數據源name,點擊"Import"按鈕,以下:

7. 查看dashboard

Grafana首頁-->左上角圖標-->Dashboard-->Home,Home下拉列表中可見有已添加的兩個dashboard,"Prometheus Stats"與"Node Exporter Server Metrics",選擇1個便可,以下:

相關文章
相關標籤/搜索