Prometheus支持多种操作系统,例如Linux、Windows和Max OSX等。在产品官网上提供了独立的二进制文件进行下载,可下载对应的tar包并在相应系统的服务器上进行安装部署。
当然,做为与容器有着紧密联系的监控系统,Promethesu也可以很方便的通过docker、kubernetes等容器平台进行部署。
Prometheus的部署安装非常简单,本文将演示通过二进制文件以及Docker的部署方式,部署环境操作系统为Centos7.8,其他环境的安装方式可自行参考官网的安装文档。
一.二进制安装
1. 下载安装包
$ cd /opt
$ wget https://github.com/prometheus/prometheus/releases/download/v2.20.0/prometheus-2.20.0.linux-386.tar.gz
2. 解压tar包,拷贝二进制文件到bin目录
$ tar -xvf prometheus-2.20.0.linux-386.tar.gz
$ cd prometheus-2.20.0.linux-386
$ sudo cp prometheus /usr/local/bin/
$ sudo cp promtool /usr/local/bin/
3. 运行--versoin 检查版本
$ prometheus --version
prometheus, version 2.20.0 (branch: HEAD, revision: e5a06b483527d4fe0704b8fa3a2b475b661c526f)
build user: root@ac954b6d5c6e
build date: 20200722-18:56:15
go version: go1.14.6
4. 启动
在本例中我们使用默认的配置文件来启动prometheus。
创建/etc/prometheus目录,并移动安装包的配置文件到此路径
$ sudo mkdir /etc/prometheus
$ sudo cp prometheus.yml /etc/prometheus/
通过promtool工具,检测配置文件是否正确。
$ promtool check config /etc/prometheus/prometheus.yml
Checking /etc/prometheus/prometheus.yml
SUCCESS: 0 rule files found
启动Prometheus,并指定配置文件。
$ prometheus --config.file /etc/prometheus/prometheus.yml &
说明:Prometheus默认只保留15天的监控数据,可通过--storage.tsdb.retention选项控制时间序列的保留时间;--storage.tsdb.path选项可用于控制时间序列数据库位置,默认数据目录位于运行Prometheus的目录中。
二. Docker安装
docker的安装方式很简单,只需要一条命令即可
$ docker run --name prometheus -d -p 9090:9090 prom/prometheus
如果要将配置文件与容器分离,可将prometheus.yml文件保存在本地目录 ,在启动时通过 -v的参数挂载到容器上面
$ mkdir /etc/prometheus
$ vi /etc/prometheus/prometheus.yml
global:
scrape_interval: 15s
evaluation_interval: 15s
alerting:
alertmanagers:
- static_configs:
- targets:
rule_files:
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
$ docker run --name prometheus -d -p 9090:9090 -v /etc/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml prom/prometheus
启动完成后,打开浏览器,访问http://$IP:9090 可看到系统界面。
标签:实战,--,9090,prometheus,etc,Prometheus,监控,yml
From: https://www.cnblogs.com/quqibinggan/p/17664852.html