Prometheus Development
概述
参考:
Prometheus 源码目录结构
更新日期: 2024-12-18. Prometheus 的源码目录随着更新迭代,也在不断变化中
- cmd/ #
- config/ # 用于处理 yaml 格式的配置文件,包含与配置文件对应内容的 struct。
- discovery/
- docs/
- documentation/
- model/
- notifier/
- plugins/
- prompb/
- promql/
- rules/
- scrape/
- scripts/
- storage/
- template/
- tracing
- tsdb/
- util/
- web/
Prometheus 通用包
参考:
该存储库包含在 Prometheus 组件和库之间共享的 Go 库。它们被认为是 Prometheus 内部的,外部使用没有任何稳定性保证。
- config : 通用配置文件对应的 struct
- 很多 Prometheus 的周边都会使用该包中的内容比如 blackbox-exporter 的配置文件中,就引用了该包中的 HTTPClientConfig 结构体,作为配置文件内容的一部分。
- expfmt : 展示格式的解码和编码
- model:共享数据结构
- promlog : go-kit/log 的日志包装器
- route:使用 httprouter 的路由包装器 context.Context
- server:普通服务器
- version:版本信息和指标
Go 客户端库
参考:
prometheus 包是一个 Core Instrumentation(核心仪器化) 的包。这个包为监控提供了用来编写 Exporter 代码的 metrics 原语
https://github.com/prometheus/exporter-toolkit/blob/master/docs/introduction.md
反馈
此页是否对你有帮助?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.