1. 程式人生 > >InfluxDB與Grafana安裝與基本使用

InfluxDB與Grafana安裝與基本使用

本文是按照CentOS7版本的配置:

1、安裝

2、啟動influxDB

3、測試

4、基本操作

5、Grafana安裝

5.1、rpm安裝

5.2、簡單使用

5.3、檔案地址

6、使用InfluxDB與Grafana

6.1建立資料來源

6.2、建立一個面板

6.3、結果


本文是按照CentOS7版本的配置:

1、安裝

(對號入座)https://portal.influxdata.com/downloads

2、啟動influxDB

systemctl enable influxdb
systemctl start influxdb

3、測試

4、基本操作

#建立資料庫
create database "db_name"
 
#顯示所有的資料庫
show databases
 
#刪除資料庫
drop database "db_name"
 
#使用資料庫
use db_name
 
#顯示該資料庫中所有的表
show measurements
 
#建立表,直接在插入資料的時候指定表名
insert test,host=127.0.0.1,monitor_name=test count=1
 
#刪除表
drop measurement "measurement_name"

5、Grafana安裝

之前安裝了很多次Grafana,均以失敗而告終,後來直接使用的這個grafana-5.1.4-1.x86_64.rpm版本就沒問題了。

5.1、rpm安裝

wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.0.3-1.x86_64.rpm

yum install initscripts
yum install fontconfig 
yum install freetype*
yum install urw-fonts

5.2、簡單使用

systemctl daemon-reload
systemctl start grafana-server
systemctl stop grafana-server
systemctl restart grafana-server
systemctl status grafana-server

5.3、檔案地址

安裝二進位制檔案          /usr/sbin/grafana-server
將init.d指令碼複製到         /etc/init.d/grafana-server
安裝預設檔案(環境變數)         /etc/sysconfig/grafana-server
將配置檔案複製到         /etc/grafana/grafana.ini
安裝systemd服務(如果systemd可用)名稱 grafana-server.service
預設配置使用日誌檔案      /var/log/grafana/grafana.log
預設配置指定sqlite3資料庫 /var/lib/grafana/grafana.db

6、使用InfluxDB與Grafana

6.1建立資料來源

6.2、建立一個面板

6.3、結果