写点什么

Prometheus 实战 (1):容器安装

  • 2022 年 8 月 29 日
    广东
  • 本文字数:1091 字

    阅读完需:约 4 分钟

首先确保你已安装了最新版本的 Docker, 如果没有安装请点击这里


下面我将以 Mac 版本的 Docker 作为演示。

安装镜像

Docker 镜像地址 Quay.io


执行命令安装:


$ docker run --name prometheus -d -p 9090:9090 quay.io/prometheus/prometheus
复制代码


如果安装成功你可以访问 127.0.0.1:9090 查看到该页面:


管理 Prometheus

运行 docker ps 查看所有服务:


CONTAINER ID        IMAGE                           COMMAND                  CREATED             STATUS              PORTS                      NAMESe9ebc2435387        quay.io/prometheus/prometheus   "/bin/prometheus -..."   26 minutes ago      Up 26 minutes       127.0.0.1:9090->9090/tcp   prometheus
复制代码


运行 docker start prometheus 启动服务


运行 docker stats prometheus 查看 prometheus 状态


运行 docker stop prometheus 停止服务

镜像配置参数

通过 Prometheus 的 Dockerfile 可以发现,其运行命令为 /bin/prometheus,并包含了 4 个默认启动参数:


ENTRYPOINT [ "/bin/prometheus" ]CMD        [ "--config.file=/etc/prometheus/prometheus.yml", \             "--storage.tsdb.path=/prometheus", \             "--web.console.libraries=/usr/share/prometheus/console_libraries", \             "--web.console.templates=/usr/share/prometheus/consoles" ]
复制代码


所以,当我们要修改配置 Prometheus 的启动参数,直接覆盖掉默认的即可,例如:


  • 修改配置文件和存储目录


docker run --name prometheus \    -v=$(pwd)/examples/prometheus.yml:/etc/prometheus/prometheus.yml \    -v=$(pwd)/examples/tsdb:/prometheus \    -d -p 9090:9090 \    quay.io/prometheus/prometheus:latest
复制代码


此时在 $(pwd)/examples 目录下将生产一个 tsdb 目录,存储 Promtheus 时序数据。


  • 开启 Lifecycle API


更新启动命令,添加 --web.enable-lifecycle 命令参数:


docker run --name prometheus \    -v=$(pwd)/examples/prometheus.yml:/etc/prometheus/prometheus.yml \    -v=$(pwd)/examples/tsdb:/prometheus \    -d -p 9090:9090 \    quay.io/prometheus/prometheus:latest \    --config.file=/etc/prometheus/prometheus.yml \    --storage.tsdb.path=/prometheus \    --web.console.libraries=/usr/share/prometheus/console_libraries \    --web.console.templates=/usr/share/prometheus/consoles \    --web.enable-lifecycle
复制代码


当重新执行 Docker 命令后并更新 examples/prometheus.yml 后,可以通过 curl -X POST http://localhost:9090/-/reload 动态加载配置文件。

发布于: 刚刚阅读数: 6
用户头像

学习是从了解到使用再到输出的过程。 2018.04.27 加入

GrafanaFans 是由南京多位 Grafana 爱好者一起发起的 Grafana 开源产品学习小组,致力于 LGTM(Loki、Grafana、Tempo、Mimir)技术栈在国内的普及和应用,欢迎关注开源项目 https://github.com/grafanafans/club。

评论

发布
暂无评论
Prometheus 实战  (1):容器安装_Prometheus_Grafana 爱好者_InfoQ写作社区