前言
为了确保疫情期间公司腾讯会议可以正常满足线上或线下使用,所以需要对腾讯云会议的核心资源数据做一个监控-看板。
一、整体业务逻辑
二、安装Grafana
yum install grafana
三、Grafana Server 设置
sudo service grafana-server start
sudo service grafana-server status Bash
[root@fedora ~]# sudo systemctl start grafana-server
[root@fedora ~]# sudo systemctl status grafana-server
设置开机自启动,并检查grafana服务运行状态
参考链接:https://grafana.com/docs/grafana/latest/installation/rpm/#install-from-yum-repository
四、访问grafana服务
查看服务IP
ifconfig
浏览器地址栏输入
http://IP:3000
账户:admin
密码:admin
五、Grafana Plugins安装mysql
六、制作看板
系统时间
会议并发数
SELECT
total_count "当前会议人数",
datatime "请求执行时间"
FROM
bingfa
会议并发数趋势图
企业用户数&人可发起会议用户数
SELECT
total_count "企业用户数&人可发起会议用户数",
datatime "请求执行时间"
FROM
users
腾讯Rooms资源使用占比
SELECT
normal_count "腾讯rooms总数量",
datatime "请求执行时间"
FROM
rooms
SELECT
normal_used_count "腾讯rooms资源已使用数量",
datatime "请求执行时间"
FROM
rooms
八、最终效果图
文章来源:https://www.toymoban.com/news/detail-505271.html
九、写在最后
目前上图数据全部靠脚本获取数据并写入数据库,但是没有在脚本中写if判断做告警的动作,因为那样可能脚本功能会比较重,如果可以的话其实可以对接企业IM告警机器人,再或者使用Mial模块实现邮件告警等。文章来源地址https://www.toymoban.com/news/detail-505271.html
到了这里,关于Grafana制作腾讯会议数据实时看板的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!