小言_互联网的博客

Prometheus部署、操作及Grafana展示

354人阅读  评论(0)

目录

一、部署Prometheus

1、环境准备工作

2、puometheus部署

2.1上传prometheus到opt目录下,并解压

2.2修改prometheus配置文件

2.3配置系统启动文件,设置开机自启

2.4开启prometheus,并访问网页验证

 二、部署Exporter(192.168.226.129)

1、监控远程Linux主机192.168.226.129

1.1上传node_exporter到opt目录,并解压

1.2启动node_exporter

 1.3修改prometheus服务器的配置文件

 1.4访问prometheus服务器

 2、监控远程MySQL

2.1上传mysqld_exporter到opt目录下,解压

 2.2进入到mysql数据库,进行授权

 2.3为mysqld_exporter创建个配置文件

2.4启动组件

 2.5浏览器访问一下默认端口9104

 2.6修改prometheus服务器的配置文件

 2.7访问prometheus服务器

 三、部署Grafana进行展示

1、下载安装Grafana(192.168.226.130)

 2、配置数据源

 3、导入模板

4、为数据源做数据展示

 5、导入grafana监控模板

 6、Grafana图形显示MySQL监控数据


一、部署Prometheus

1、环境准备工作

服务器 IP地址 组件
Prometheus服务器 192.168.226.128 Prometheus、node_exporter
agent服务器 192.168.226.129 node_exporter
grafana服务器 192.168.226.130 Grafana

2、puometheus部署

2.1上传prometheus到opt目录下,并解压


  
  1. tar zxf prometheus-2.27.1.linux-amd64.tar.gz
  2. mv prometheus-2.27.1.linux-amd64 /usr/local/prometheus
  3. cd /usr/local/prometheus/
  4. ls

2.2修改prometheus配置文件


  
  1. cat /usr/local/prometheus/prometheus.yml | grep -v "^#"
  2. global: #用于prometheus的全局配置,比如采集间隔,抓取超时时间等
  3. scrape_interval: 15s #采集目标主机监控数据的时间间隔,默认为1m
  4. evaluation_interval: 15s #触发告警生成alert的时间间隔,默认是1m
  5. # scrape_timeout is set to the global default (10s).
  6. scrape_timeout: 10s #数据采集超时时间,默认10s
  7. alerting: #用于alertmanager实例的配置,支持静态配置和动态服务发现的机制
  8. alertmanagers:
  9. - static_configs:
  10. - targets:
  11. # - alertmanager:9093
  12. rule_files: #用于加载告警规则相关的文件路径的配置,可以使用文件名通配机制
  13. # - "first_rules.yml"
  14. # - "second_rules.yml"
  15. scrape_configs: #用于采集时序数据源的配置
  16. # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  17. - job_name: "prometheus" #每个被监控实例的集合用job_name命名,支持静态配置(static_configs)和动态服务发现的机制(*_sd_configs)
  18. # metrics_path defaults to '/metrics'
  19. # scheme defaults to 'http'.
  20. static_configs: #静态目标配置,固定从某个target拉取数据
  21. - targets: [ "localhost:9090"]

2.3配置系统启动文件,设置开机自启


  
  1. [root@prometheus prometheus] # vim /usr/lib/systemd/system/prometheus.service
  2. [Unit]
  3. Description=Prometheus Server
  4. Documentation=https://prometheus.io
  5. After=network.target
  6. [Service]
  7. Type=simple
  8. ExecStart=/usr/local/prometheus/prometheus \
  9. --config.file=/usr/local/prometheus/prometheus.yml \
  10. --storage.tsdb.path=/usr/local/prometheus/data/ \
  11. --storage.tsdb.retention=15d \
  12. --web.enable-lifecycle
  13. ExecReload=/bin/kill -HUP $MAINPID
  14. Restart=on-failure
  15. [Install]
  16. WantedBy=multi-user.target
 

2.4开启prometheus,并访问网页验证

 

 通过http://192.168.226.128:9090/metrics可以查看到监控的数据

 

 二、部署Exporter(192.168.226.129)

1、监控远程Linux主机192.168.226.129

1.1上传node_exporter到opt目录,并解压


  
  1. tar zxf node_exporter-1.1.2.linux-amd64.tar.gz
  2. mv node_exporter-1.1.2.linux-amd64 /usr/local/bin/

1.2启动node_exporter


  
  1. ./node_exporter
  2. netstat -natp | grep :9100
  3. 浏览器访问:http://192.168.226.129:9100/metrics ,可以看到 Node Exporter 采集到的指标数据

 

 1.3修改prometheus服务器的配置文件


  
  1. vim prometheus.yml
  2. - job_name: 'nodes'
  3. static_configs:
  4. - tarhets: [ '192.168.226.129:9100']

 改完配置文件后,重启服务

 1.4访问prometheus服务器

 2、监控远程MySQL

2.1上传mysqld_exporter到opt目录下,解压


  
  1. tar zxf mysqld_exporter-0.12.1.linux-amd64.tar.gz
  2. mv mysqld_exporter-0.12.1.linux-amd64 /usr/local/mysqld_exporter

 2.2进入到mysql数据库,进行授权


  
  1. 进入到数据库
  2. create user 'exporter'@ '%' identified by '123456';
  3. grant process,replication client,select on *.* to 'exporter'@ '%' identified by '123456';
  4. flush privileges;

 2.3为mysqld_exporter创建个配置文件


  
  1. vim /usr/local/mysqld_exporter/mysqld_exporter.cnf
  2. [client]
  3. user=exporter
  4. password=123456

2.4启动组件

./mysqld_exporter --config.my-cnf=/usr/local/mysqld_exporter/mysqld_exporter.cnf

 2.5浏览器访问一下默认端口9104

 2.6修改prometheus服务器的配置文件


  
  1. vim prometheus.yml
  2. - job_name: 'node_mysql'
  3. static_configs:
  4. - targets: [ '192.168.226.129:9104']

 重启服务,看一下状态

 2.7访问prometheus服务器

 三、部署Grafana进行展示

1、下载安装Grafana(192.168.226.130)


  
  1. rpm -ivh /opt/grafana-7.3.6-1.x86_64.rpm
  2. systemctl start grafana-server
  3. systemctl enable grafana-server
  4. netstat -natp | grep :3000
  5. 浏览器访问:http://192.168.109.19:3000 ,默认账号和密码为 admin/admin

 

 2、配置数据源

下面我们把 Prometheus 服务器收集的数据做为一个数据源添加到 grafana,让 grafana 可以得到 Prometheus 的数据

 

 

 3、导入模板

4、为数据源做数据展示

 自定义名称,点击保存在dashboard可以查看

 5、导入grafana监控模板


  
  1. 浏览器访问:https://grafana.com/grafana/dashboards ,在页面中搜索 node exporter ,选择适合的面板,点击 Copy ID 或者 Download JSON
  2. 在 grafana 页面中,+ Create -> Import ,输入面板 ID 号或者上传 JSON 文件,点击 Load,即可导入监控面板

 

 6、Grafana图形显示MySQL监控数据

在 grafana 上修改配置文件,并下载安装 mysql 监控的 dashboard(包含相关 json 文件,这些 json 文件可以看作是开发人员开发的一个监控模板)

 在grafana图形化界面导入相关的json文件
用grafana服务器上的firefox浏览器打开,方便上传,模板这里选择7362

 

 

 


转载:https://blog.csdn.net/weixin_71429844/article/details/127570937
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场