prometheus 安装和简单使用

一 : 安装

环境准备:1 go1.12及以上

                  2 git

mkdir -p $GOPATH/src/github.com/prometheus
cd $GOPATH/src/github.com/prometheus
git clone https://github.com/prometheus/prometheus.git
cd prometheus
make build (此步可能持续较长时间,耐心等待)

准备配置文件

vi prometheus.yml

global:
  scrape_interval:     15s # By default, scrape targets every 15 seconds.

  # Attach these labels to any time series or alerts when communicating with
  # external systems (federation, remote storage, Alertmanager).
  external_labels:
    monitor: 'codelab-monitor'

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: 'prometheus'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

    static_configs:
      - targets: ['localhost:9090']

启动
./prometheus --config.file=prometheus.yml

访问 127.0.0.1:9090/graph

安装成功

二 使用

127.0.0.1:9090/metrics 查看指标列表

任选一个指标填入文本框

点击 Execute 按钮

或者使用Api

前缀(访问地址)

http://127.0.0.1:9090/api/v1/query?query=

后缀(指标)

prometheus_sd_kubernetes_events_total

拼接

http://127.0.0.1:9090/api/v1/query?query=prometheus_sd_kubernetes_events_total

发送get请求

得到类似结果

 

 

Prometheus 是一个开源的监控系统,它可以用来收集、存储和查询各种不同类型的指标数据。下面是一个简要的 Prometheus 安装使用教程: 1. 下载 Prometheus 你可以从 Prometheus 的官网下载最新版本的二进制文件:https://prometheus.io/download/ 2. 解压 Prometheus 将下载的 Prometheus 压缩文件解压到你想要安装的目录中: ``` tar xvfz prometheus-*.tar.gz cd prometheus-* ``` 3. 配置 Prometheus Prometheus 的配置文件是 `prometheus.yml`,你需要根据你的需要编辑它。这个文件包含了 Prometheus 的所有配置信息,包括要监控的目标、指标的抓取频率等等。 例如,以下是一个简单Prometheus 配置文件: ``` global: scrape_interval: 15s scrape_configs: - job_name: 'prometheus' static_configs: - targets: ['localhost:9090'] ``` 这个配置文件定义了一个名为 `prometheus` 的作业,它会每 15 秒抓取 localhost:9090 上的指标数据。 4. 启动 Prometheus 使用以下命令启动 Prometheus: ``` ./prometheus ``` 这将启动 Prometheus,并开始抓取指标数据。你可以在浏览器中访问 `http://localhost:9090`,查看 Prometheus 的 Web 界面。 5. 查询指标 在 Prometheus 的 Web 界面中,你可以使用 PromQL 查询语言查询指标数据。例如,以下查询会返回 Prometheus 目前存储的所有指标名称: ``` {__name__} ``` 这只是一个简单的例子,你可以在 Prometheus 的文档中找到更多的查询语言和示例。 这就是一个简单Prometheus 安装使用教程。希望能对你有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值