Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stulzq/MonitoringSystem
prometheus & grafana help doc.
https://github.com/stulzq/MonitoringSystem
grafana monitoring prometheus
Last synced: 3 days ago
JSON representation
prometheus & grafana help doc.
- Host: GitHub
- URL: https://github.com/stulzq/MonitoringSystem
- Owner: stulzq
- License: apache-2.0
- Created: 2018-10-11T05:48:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T14:46:25.000Z (about 6 years ago)
- Last Synced: 2024-11-10T19:34:39.186Z (5 days ago)
- Topics: grafana, monitoring, prometheus
- Homepage:
- Size: 113 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prometheus + Grafana 搭建可视化监控系统
## 一.Grafana
### 1.安装
Ubantu:
````shell
curl https://raw.githubusercontent.com/stulzq/MonitoringSystem/master/grafana/install-ubantu-5.3.0-x86-64|sh
````其他系统:http://docs.grafana.org/installation/
## 2.操作
````shell
systemctl start grafana-server #启动服务
systemctl stop grafana-server #停止服务
systemctl restart grafana-server #重启服务
systemctl status grafana-server #查看服务
````### 3.配置
编辑配置文件
````shell
vim /etc/grafana/grafana.ini
````修改 监听地址为你需要的,默认为 `localhost`
![1539238089009](assets/1539238089009.png)
重启服务:
````shell
systemctl restart grafana-server
````### 4.访问
输入你配置的地址访问,默认登录用户名密码都是 `admin`
![1539238152788](assets/1539238152788.png)
## 二.Prometheus
### 1.安装
使用 root 用户,或者具有 root 权限的用户执行以下命令:
````shell
curl https://raw.githubusercontent.com/stulzq/MonitoringSystem/master/prometheus/install-2.4.3-linux-amd64|sh
````官方:https://prometheus.io/download/
### 2.访问
在浏览器输入 `http://:9090` 即可访问。默认有一个监控自己的 job
![1539355374376](assets/1539355374376.png)
### 3.操作
````shell
systemctl start promoetheus #启动服务
systemctl stop promoetheus #停止服务
systemctl restart promoetheus #重启服务
systemctl status promoetheus #查看服务
````