网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
下载
wget -c https://github.com/prometheus/node_exporter/releases/download/v0.18.1/node_exporter-0.18.1.linux-amd64.tar.gz
解压
tar -zxvf node_exporter-0.18.1.linux-amd64.tar.gz
后台运行
nohup yourPath/node_exporter > yourLogPath/node_exporter.stdout 2>&1 &
2.安装Prometheus
下载地址:https://prometheus.io/download/
下载版本号为2.13.0,也可以根据自己需要下载其他版本
wget -c https://github.com/prometheus/prometheus/releases/download/v2.13.0/prometheus-2.13.0.linux-amd64.tar.gz
解压
tar -zxvf prometheus-2.13.0.linux-amd64.tar.gz
配置
在prometheus.yml配置文件中追加node_exporter的job,监控本机服务器
- job_name: 'node_exporter'
static_configs:
- targets: ['localhost:9100']
注:如果需要监控多台服务器指标,则只需要在其他服务器上安装node_exporter即可,不需要安装prometheus。参考配置如下:
- job_name: 'node_exporter'
static_configs:
- '192.168.20.165:9100'
- '192.168.20.166:9100'
- '192.168.20.167:9100'
启动
nohup yourPath/prometheus > yourLogPath/prometheus.stdout 2>&1 &
注:yourPath是prometheus可执行程序所在路径,yourLogPath是日志路径,prometheus默认会加载prometheus.yml文件进行初始化,默认端口为9090。
启动成功后可以访问9090端口(注意防火墙需要开启该端口)
insert metric at cursor里面是prometheus监控的指标
Status -> Targets是监控的目标节点
三、安装Grafana
下载地址: https://grafana.com/grafana/download
下载 版本号为6.4.1
wget https://dl.grafana.com/oss/release/grafana-6.4.1.linux-amd64.tar.gz
解压
tar -zxvf grafana-6.4.1.linux-amd64.tar.gz
下载饼图插件grafana-piechart-panel
可以到grafana的bin目录下:grafana-cli plugins install grafana-piechart-panel将下载后的插件,放入到grafana文件的data/plugins。因为grafana启动会去加载data/plugins中的插件。
也可以用以下方式安装饼图
cd /var/lib/grafana/plugins/
git clone https://github.com/grafana/piechart-panel.git
后台启动grafana
nohup yourPath/bin/grafana-server > yourLogPath/grafana.stdout 2>&1 &
登录grafana,默认端口为3000, 初始账号密码为admin/admin
登录之后添加prometheus数据源
数据源为prometheus(http://localhost:9090)
添加node_exporter对应的仪表盘
导入后就可以看到node_exporter提供的监控指标,如下图所示
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上软件测试知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上软件测试知识点,真正体系化!**
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新