Grafana监控minio的极简方法
背景
想监控一下minio的部分信息.
使用过程中需要关注的内容挺多的.
只看简单的node感觉已经不够了.
所以想监控易一下.
方式和方法
minio其实集成了prometheus 支持的监控指标
只需要在配置文件中放开就可以了.
虽然可以使用mc 的命令 create beartoken
但是我这边验证这种方式一直不行
所以没办法只能使用 public的方式进行处理.
这里简单记录一下
修改minio的启动脚本
cat > /etc/profile.d/minio.sh <<EOF
export MINIO_ACCESS_KEY=miniouser
export MINIO_SECRET_KEY=miniopassword
export MINIO_PROMETHEUS_AUTH_TYPE=public
EOF
然后设置启动minio
nohup /usr/bin/minio server /data/minio/data/ --address 0.0.0.0:9000 > /data/minio/minio.log &
# 注意也可以在命令脚本里面加上环境变量.
prometheus添加监控点
- job_name: minio_job
metrics_path: /minio/prometheus/metrics
scheme: http
static_configs:
- targets: ['192.168.255.xx:9000']
弄好之后可以重启prometheus 进行数据的采集
killall prometheus
sleep 1
nohup ./prometheus --storage.tsdb.retention.time=15d --storage.tsdb.path="/prometheusdata/" --storage.tsdb.retention.size=15GB --web.listen-address="0.0.0.0:9095" 2>&1 >/dev/null &
Grafana的设置
可以直接load一下 12063的 grafana的dashboard
就可以在界面上查看对应的minio的监控信息了.