grafana 用 MySQL 做数据源

Prometheus   2025-01-12 16:04   237   0  

1、创建数据库及账号

CREATE DATABASE grafana DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL ON grafana.* TO 'grafana' @'192.168.102.130' IDENTIFIED BY 'grafana';
FLUSH PRIVILEGES;

2、修改 grafana  配置文件

#################################### Database ############################
[database]
# You can configure the database connection by specifying type, host, name, user and password
# as separate properties or as on string using the url property.

# Either "mysql", "postgres" or "sqlite3", it's your choice
type = mysql
host = 192.168.102.129:3306
name = grafana
user = grafana
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;"""
password = grafana

image.png

3、指定配置文件启动

nohup /usr/local/prometheus/grafana-9.0.5/bin/grafana-server -config "/usr/local/prometheus/grafana-9.0.5/conf/defaults.ini" >/usr/local/prometheus/grafana-9.0.5/grafana.log 2>&1 &

启动成功后会自动创建系统相关表
image.png

4、添加 MySQL 数据源

image.png
image.png
image.png
添加数据之后在添加一个查询编辑器
image.png


博客评论
还没有人评论,赶紧抢个沙发~
发表评论
说明:请文明发言,共建和谐网络,您的个人信息不会被公开显示。