热门搜索:
prometheus

prom/prometheus

prom
自动构建

Prometheus(简称Prom)是一款开源的监控与告警系统,由SoundCloud发起,现为云原生计算基金会(CNCF)毕业项目,采用时序数据库存储监控指标,支持多维度数据模型和PromQL查询语言,可通过静态配置或动态服务发现机制采集数据,并能基于自定义规则触发告警,广泛集成于Kubernetes等云原生环境,为分布式系统提供可靠的性能监控与问题诊断能力。

2.1千 次收藏下载次数: 0状态:自动构建维护者:prom仓库类型:镜像最近更新:13 天前
让 AI 帮你使用轩辕镜像?

如果你使用 DeepSeek元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AIDeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

标签列表
点击查看


Prometheus

Visit prometheus.io for the full documentation, examples and guides.

https://github.com/prometheus/prometheus/actions/workflows/ci.yml/badge.svg](https://github.com/prometheus/prometheus/actions/workflows/ci.yml) ![Go Report Card]([] ![CII Best Practices]([] https://github.com/prometheus/prometheus/actions/workflows/govulncheck.yml/badge.svg?event=schedule](https://github.com/prometheus/prometheus/actions/workflows/govulncheck.yml) ![OpenSSF Scorecard]([] ![CLOMonitor]([] ![Fuzzing Status]([***]

Prometheus, a Cloud Native Computing Foundation project, is a systems and service monitoring system. It collects metrics from configured targets at given intervals, evaluates rule expressions, displays the results, and can trigger alerts when specified conditions are observed.

The features that distinguish Prometheus from other metrics and monitoring systems are:

  • A multi-dimensional data model (time series defined by metric name and set of key/value dimensions)
  • PromQL, a powerful and flexible query language to leverage this dimensionality
  • No dependency on distributed storage; single server nodes are autonomous
  • An HTTP pull model for time series collection
  • Pushing time series is supported via an intermediary gateway for batch jobs
  • Targets are discovered via service discovery or static configuration
  • Multiple modes of graphing and dashboarding support
  • Support for hierarchical and horizontal federation

Architecture overview

!Architecture overview

Install

There are various ways to install Prometheus.

Precompiled binaries

Precompiled binaries for released versions are available in the download section on prometheus.io. Using the latest production release binary is the recommended way to install Prometheus. See the Installing chapter in the documentation for all the details.

Docker images

Docker images are available on Quay.io or https://hub.docker.com/r/prom/prometheus/.

You can launch a Prometheus container for trying it out with

bash
docker run --name prometheus -d -p 127.0.0.1:9090:9090 prom/prometheus

Prometheus will now be reachable at http://localhost:9090/.

Building from source

To build Prometheus from source code, you need:

  • Go: Version specified in go.mod or greater.
  • NodeJS: Version specified in .nvmrc or greater.
  • npm: Version 10 or greater (check with npm --version and here).

Start by cloning the repository:

bash
git clone https://github.com/prometheus/prometheus.git
cd prometheus

You can use the go tool to build and install the prometheus and promtool binaries into your GOPATH:

bash
go install github.com/prometheus/prometheus/cmd/...
prometheus --config.file=your_config.yml

However, when using go install to build Prometheus, Prometheus will expect to be able to read its web assets from local filesystem directories under web/ui/static. In order for these assets to be found, you will have to run Prometheus from the root of the cloned repository. Note also that this directory does not include the React UI unless it has been built explicitly using make assets or make build.

An example of the above configuration file can be found https://github.com/prometheus/prometheus/blob/main/documentation/examples/prometheus.yml

You can also build using make build, which will compile in the web assets so that Prometheus can be run from anywhere:

bash
make build
./prometheus --config.file=your_config.yml

The Makefile provides several targets:

  • build: build the prometheus and promtool binaries (includes building and compiling in web assets)
  • test: run the tests
  • test-short: run the short tests
  • format: format the source code
  • vet: check the source code for common errors
  • assets: build the React UI

Service discovery plugins

Prometheus is bundled with many service discovery plugins. You can customize which service discoveries are included in your build using Go build tags.

To exclude service discoveries when building with make build, add the desired tags to the .promu.yml file under build.tags.all:

yaml
build:
    tags:
        all:
            - netgo
            - builtinassets
            - remove_all_sd           # Exclude all optional SDs
            - enable_kubernetes_sd    # Re-enable only kubernetes

Then run make build as usual. Alternatively, when using go build directly:

bash
go build -tags "remove_all_sd,enable_kubernetes_sd" ./cmd/prometheus

Available build tags:

  • remove_all_sd - Exclude all optional service discoveries (keeps file_sd, static_sd, and http_sd)
  • enable_<name>_sd - Re-enable a specific SD when using remove_all_sd

If you add out-of-tree plugins, which we do not endorse at the moment, additional steps might be needed to adjust the go.mod and go.sum files. As always, be extra careful when loading third party code.

Building the Docker image

You can build a docker image locally with the following commands:

bash
make promu
promu crossbuild -p linux/amd64
make npm_licenses
make common-docker-amd64

The make docker target is intended only for use in our CI system and will not produce a fully working image when run locally.

Using Prometheus as a Go Library

Within the Prometheus project, repositories such as https://github.com/prometheus/common and https://github.com/prometheus/client-golang are designed as re-usable libraries.

The https://github.com/prometheus/prometheus repository builds a stand-alone program and is not designed for use as a library. We are aware that people do use parts as such, and we do not put any deliberate inconvenience in the way, but we want you to be aware that no care has been taken to make it work well as a library. For instance, you may encounter errors that only surface when used as a library.

Remote Write

We are publishing our Remote Write protobuf independently at buf.build.

You can use that as a library:

shell
go get buf.build/gen/go/prometheus/prometheus/protocolbuffers/go@latest

This is experimental.

Prometheus code base

In order to comply with go mod rules, Prometheus release number do not exactly match Go module releases.

For the Prometheus v3.y.z releases, we are publishing equivalent v0.3y.z tags. The y in v0.3y.z is always padded to two digits, with a leading zero if needed.

Therefore, a user that would want to use Prometheus v3.0.0 as a library could do:

shell
go get github.com/prometheus/prometheus@v0.300.0

For the Prometheus v2.y.z releases, we published the equivalent v0.y.z tags.

Therefore, a user that would want to use Prometheus v2.35.0 as a library could do:

shell
go get github.com/prometheus/prometheus@v0.35.0

This solution makes it clear that we might break our internal Go APIs between minor user-facing releases, as breaking changes are allowed in major version zero.

React UI Development

For more information on building, running, and developing on the React-based UI, see the React app's README.md.

More information

  • Godoc documentation is available via pkg.go.dev. Due to peculiarities of Go Modules, v3.y.z will be displayed as v0.3y.z (the y in v0.3y.z is always padded to two digits, with a leading zero if needed), while v2.y.z will be displayed as v0.y.z.
  • See the Community page for how to reach the Prometheus developers and users on various communication channels.

Contributing

Refer to https://github.com/prometheus/prometheus/blob/main/CONTRIBUTING.md

License

Apache License 2.0, see https://github.com/prometheus/prometheus/blob/main/LICENSE.

更多相关 Docker 镜像与资源

以下是 prom/prometheus 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:

  • ubuntu/prometheus Docker 镜像说明(Prometheus 监控系统,基于 Ubuntu,适合生产环境)
  • bitnami/prometheus Docker 镜像说明(Prometheus 监控系统,Bitnami 企业级配置)
  • bitnamicharts/prometheus Docker 镜像说明(Prometheus 监控系统,Bitnami Charts 版本)
  • grafana/grafana Docker 镜像说明(Grafana 监控和可视化平台,支持多种数据源和仪表板)
  • ubuntu/grafana Docker 镜像说明(Ubuntu 官方 Grafana 镜像,适合监控可视化部署)

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面

轩辕镜像加速拉取命令点我查看更多 prometheus 镜像标签

docker pull docker.xuanyuan.run/prom/prometheus:<标签>

DockerHub 原生拉取命令

docker pull prom/prometheus:<标签>

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

官方公众号:源码跳动官方技术交流群:831623681