• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    使用Grafana+Prometheus监控mysql服务性能

    Prometheus(也叫普罗米修斯)官网:https://prometheus.io/docs/introduction/overview/

    Grafana官网:https://grafana.com/enterprise

    特征

    普罗米修斯的主要特点是:

    组件

    Prometheus生态系统由多个组件组成,其中许多组件是可选的:

    大多数Prometheus组件都是用Go编写的,因此很容易构建和部署为静态二进制文件。

    今天本文重点给大家介绍使用Grafana+Prometheus监控mysql性能的方法详细介绍。

    #cmd /usr/local

    今天讲一下如何监控服务器中的mysql数据库的性能

    一、数据库操作

    1.mysql启动

    #service mysqld start #启动数据库
    #service mysqld stop #关闭数据库
    #service mysqld restart #重启数据库

    2、进入 mysql

    mysql -u root -p

    3、新增监控 mysql 账号

    #use mysql
    #GRANT ALL PRIVILEGES ON *.* TO '帐号'@'localhost' identified by '密码';br>#flush privileges; #刷新
    

    二、Prometheus 搭建

    这里会给大家提供一个干净的普罗米修斯数据库的压缩包,大家解压就好

    将压缩包放到服务器中

    #cmd /usr/local

    解压

    #tar -zxvf prometheus-xxxxx

    现在修改一下普罗米修斯的配置文件,在他的安装目录中有一个prometheus.yml文件,添加

    - job_name: 'linux' static_configs: - targets: ['localhost:9100']  - job_name: 'mysql'    static_configs:    - targets: ['localhost:9104']

    这里大家注意一个地方,要严格按照普罗米修斯的格式,不要随意添加空格和缩进,不然会出错

    增加这一步的意义是给普罗米修斯开放两个端口,用于Grafana监控

    设置文件权限:#chmod 777 prometheus.yml 从配置文件中启动

    #./prometheus --config.file=prometheus.yml

    设置linux系统端口

    firewall-cmd --list-ports ##列出开放的端口 firewall-cmd --add-port=9090/tcp --permanent ##永久添加 9090 端口 firewall-cmd --add-port=9100/tcp --permanent ##永久添加 9100 端口 firewall-cmd --add-port=9104/tcp --permanent ##永久添加 9104 端口 firewall-cmd --list-ports ##列出开放的端口 systemctl stop firewalld ##关闭防火墙 systemctl start firewalld ##开启防火墙 systemctl status firewalld ##查看防火墙状态 systemctl restart firewalld ##重启防火墙 systemctl disable firewalld ##开机关闭防火墙,即永久关闭

    windows 访问:http://192.168.xx.xx:9090 statue-targets 查看端口状态为up为成功

    三、mysqld_exporter 搭建

    这里也会提供一个压缩包给大家

    1、上传 mysqld_exporter 至 local 下 2、解压 tar -zxvf mysqld_exporter-xxxxxx 3、在/usr/local/mysql_exporter 下创建一个.my.cnf 配置文件,写上创建的用户名和密码

    [client] user=xxxx password=xxxx

    4、启动服务

    在/usr/local/mysql_exporter 下启动./mysqld_exporter --config.my-cnf=my.cnf

    5、安装lsof

    #yum install lsof

    6、查看 9104 端口占用情况

    lsof -i:9104

    7、

    关闭进程 #kill -9 进程号

    8、重启 Prometheus

    四、Node_exporter 监控 linux

    这里会给大家提供一个压缩包

    1、上传至/usr/local/ 2、解压 tar -zxvf node_exporter-xxxxx 3、在/usr/local/node_exporter 目录下,启动 ./node_exporter 4、通过浏览器访问 http://服务器 ip:9100/metrics 可以看到监控的数据

    此时查看任务项均处于UP状态这样我们的监控平台就搭建起来了,至于Gafana如何与普罗米修斯数据库连接不做解释,需要的请看上几篇文章

    附linux效果图

    最后给大家附上本文所需压缩包,以及Grafana基于普罗米修斯数据库的监控模板

    链接: https://pan.baidu.com/s/124sJ0cv3zghK02n4W-rSZw 提取码: w987

    链接: https://pan.baidu.com/s/1l3pvorWAv3_VfwhL6G9PHg 提取码: m7nw

    总结

    到此这篇关于使用Grafana+Prometheus监控mysql性能的文章就介绍到这了,更多相关mysql性能监控内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • 利用Prometheus与Grafana对Mysql服务器的性能监控详解
    • SpringBoot使用prometheus监控的示例代码
    • springboot2.X整合prometheus监控的实例讲解
    • SpringBoot+Prometheus+Grafana实现应用监控和报警的详细步骤
    • Prometheus的安装和配置教程详解
    • Prometheus 入门教程之SpringBoot 实现自定义指标监控
    • Prometheus开发中间件Exporter过程详解
    • springboot集成普罗米修斯(Prometheus)的方法
    • 使用 prometheus python 库编写自定义指标的方法(完整代码)
    • 使用prometheus统计MySQL自增主键的剩余可用百分比
    • 使用Prometheus+Grafana的方法监控Springboot应用教程详解
    • Prometheus 监控MySQL使用grafana展示
    上一篇:mysql MGR 单主多主模式切换知识点详解
    下一篇:在MySQL concat里面使用多个单引号,三引号的问题
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    使用Grafana+Prometheus监控mysql服务性能 使用,Grafana+Prometheus,监控,