prometheus / prometheus/client_python
Increase the usage of augmented assignment statements
未关闭
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 4.4k
- 派生
- 876
- 平均合并
- 8 天 4 小时
- 30 天内合并 PR
- 1
描述
👀 Some source code analysis tools can help to find opportunities for improving software components.
💭 I propose to increase the usage of augmented assignment statements accordingly.
diff --git a/prometheus_client/exposition.py b/prometheus_client/exposition.py
index e374144..1c10055 100644
--- a/prometheus_client/exposition.py
+++ b/prometheus_client/exposition.py
@@ -179,9 +179,9 @@ def generate_latest(registry=REGISTRY):
mtype = metric.type
# Munging from OpenMetrics into Prometheus format.
if mtype == 'counter':
- mname = mname + '_total'
+ mname += '_total'
elif mtype == 'info':
- mname = mname + '_info'
+ mname += '_info'
mtype = 'gauge'
elif mtype == 'stateset':
mtype = 'gauge'
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 prometheus_client/exposition.py 中的 generate_latest 开始,检查 issue 中展示的三个指标类型分支。进行针对性的增强赋值修改,并确认生成的 Prometheus 输出保持不变。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- observability
- Issue 类型
- 重构
- 难度
- 1/5
- 预计耗时
- 1 小时以内
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 45/100