prometheus安装教程

本文涉及的产品
可观测监控 Prometheus 版,每月50GB免费额度
简介: prometheus安装教程

下载解压

可以直接下载二进制包,也可以自己下载源码包编译,下载地址:https://prometheus.io/download/

wget https://github.com/prometheus/prometheus/releases/download/v2.36.0/prometheus-2.36.0.linux-amd64.tar.gz
tar -zvxf prometheus-2.36.0.linux-amd64.tar.gz 
cd prometheus-2.36.0.linux-amd64

配置项:

# 全局配置
global:
  scrape_interval: 15s # 设置抓取间隔,默认1分钟,配置是15秒
  evaluation_interval: 15s # 估算规则的默认周期,默认1分钟,配置是15秒
  # scrape_timeout # 抓取超时时间,默认10秒
# Alertmanager configuration
alerting:
  alertmanagers:
    - static_configs:
        - targets:
          # - alertmanager:9093
# 规则文件列表,使用  evaluation_interval 间隔去抓取
rule_files:
  # - "first_rules.yml"
  # - "second_rules.yml"
# 抓取节点配置,使用 scrape_interval 间隔去抓取
scrape_configs:
  # prometheus默认的节点配置
  - job_name: "prometheus"
    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.
    static_configs:
      - targets: \["localhost:9091"\]

运行

./prometheus --config.file=./prometheus.yml --web.listen-address=0.0.0.0:9091 --storage.tsdb.path=/usr/local/prometheus-2.36.0.linux-amd64/data

启动成功截图:

image.png

转为服务开机自启动

# vim /etc/systemd/system/prometheus.service
\[Unit\]
Description=Prometheus
Documentation=https://prometheus.io/
After=network.target
\[Service\]
ExecStart=/usr/local/prometheus-2.36.0.linux-amd64/prometheus --config.file=/usr/local/prometheus-2.36.0.linux-amd64/prometheus.yml --storage.tsdb.path=/usr/local/prometheus-2.36.0.linux-amd64/data --web.listen-address=0.0.0.0:9091
WorkingDirectory=/usr/local/prometheus-2.36.0.linux-amd64/
Restart=on-failure
\[Install\]
WantedBy=multi-user.target

启动服务

systemctl start prometheus
 systemctl status prometheus
 systemctl enable prometheus

image.png

查看

访问:localhost:9090 即可看到prometheus自带的ui:


image.png

相关实践学习
容器服务Serverless版ACK Serverless 快速入门:在线魔方应用部署和监控
通过本实验,您将了解到容器服务Serverless版ACK Serverless 的基本产品能力,即可以实现快速部署一个在线魔方应用,并借助阿里云容器服务成熟的产品生态,实现在线应用的企业级监控,提升应用稳定性。
目录
相关文章
|
监控 数据库
如何安装使用grafana
如何安装使用grafana
184 2
|
4月前
|
Prometheus 监控 Kubernetes
prometheus学习笔记之简介与安装
prometheus学习笔记之简介与安装
prometheus学习笔记之简介与安装
|
4月前
|
Prometheus 监控 Cloud Native
prometheus学习笔记之Grafana安装与配置
prometheus学习笔记之Grafana安装与配置
|
7月前
阿里云Grafana服务支持一键安装Grafana插件
【2月更文挑战第12天】阿里云Grafana服务支持一键安装Grafana插件
106 4
|
7月前
获取Grafana安装包并安装
获取Grafana安装包并安装
139 1
|
7月前
|
Prometheus 数据可视化 Cloud Native
Grafana【部署 02】可视化工具 Grafana 9 最新版下载安装配置及使用(新特性体验)
Grafana【部署 02】可视化工具 Grafana 9 最新版下载安装配置及使用(新特性体验)
260 0
|
Prometheus Kubernetes Cloud Native
k8s安装prometheus
##### 安装 在目标集群上,执行如下命令: ```shell kubectl apply -f https://github.com/512team/dhorse/raw/main/conf/kubernetes-prometheus.yml ``` ##### 使用 1.在浏览器访问地址:http://master_ip:30000,如下图所示: 2.查看k8s自带的指标数据,如下图所示:
k8s安装prometheus
|
存储 Prometheus 监控
【Grafana】基于CentOS 7系统安装部署Grafana服务端
【Grafana】基于CentOS 7系统安装部署Grafana服务端
1037 0
|
Prometheus 监控 数据可视化
Linux下安装配置Grafana压测监控服务-安装Grafana
Linux下安装配置Grafana压测监控服务-安装Grafana
|
存储 Prometheus 监控
prometheus安装及使用入门
prometheus安装及使用入门
1372 0
prometheus安装及使用入门