Skip to content

Commit efd3e2d

Browse files
author
Mengjiao Liu
committed
Translate the contextual-logging-in-kubernetes-1-29 blog into Chinese
1 parent 9cb970b commit efd3e2d

File tree

1 file changed

+270
-0
lines changed

1 file changed

+270
-0
lines changed
Lines changed: 270 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
1+
---
2+
layout: blog
3+
title: "Kubernetes 1.29 中的上下文日志生成:更好的故障排除和增强的日志记录"
4+
slug: contextual-logging-in-kubernetes-1-29
5+
date: 2023-12-20T09:30:00-08:00
6+
---
7+
<!--
8+
layout: blog
9+
title: "Contextual logging in Kubernetes 1.29: Better troubleshooting and enhanced logging"
10+
slug: contextual-logging-in-kubernetes-1-29
11+
date: 2023-12-20T09:30:00-08:00
12+
canonicalUrl: https://www.kubernetes.dev/blog/2023/12/20/contextual-logging/
13+
-->
14+
15+
<!--
16+
**Authors**: [Mengjiao Liu](https://github.com/mengjiao-liu/) (DaoCloud), [Patrick Ohly](https://github.com/pohly) (Intel)
17+
-->
18+
**作者**[Mengjiao Liu](https://github.com/mengjiao-liu/) (DaoCloud), [Patrick Ohly](https://github.com/pohly) (Intel)
19+
20+
**译者**[Mengjiao Liu](https://github.com/mengjiao-liu/) (DaoCloud)
21+
22+
<!--
23+
On behalf of the [Structured Logging Working Group](https://github.com/kubernetes/community/blob/master/wg-structured-logging/README.md)
24+
and [SIG Instrumentation](https://github.com/kubernetes/community/tree/master/sig-instrumentation#readme),
25+
we are pleased to announce that the contextual logging feature
26+
introduced in Kubernetes v1.24 has now been successfully migrated to
27+
two components (kube-scheduler and kube-controller-manager)
28+
as well as some directories. This feature aims to provide more useful logs
29+
for better troubleshooting of Kubernetes and to empower developers to enhance Kubernetes.
30+
-->
31+
代表[结构化日志工作组](https://github.com/kubernetes/community/blob/master/wg-structed-logging/README.md)
32+
[SIG Instrumentation](https://github.com/kubernetes/community/tree/master/sig-instrumentation#readme)
33+
我们很高兴地宣布在 Kubernetes v1.24 中引入的上下文日志记录功能现已成功迁移了两个组件(kube-scheduler 和 kube-controller-manager)
34+
以及一些目录。该功能旨在为 Kubernetes 提供更多有用的日志以更好地进行故障排除,并帮助开发人员增强 Kubernetes。
35+
36+
<!--
37+
## What is contextual logging?
38+
39+
[Contextual logging](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging)
40+
is based on the [go-logr](https://github.com/go-logr/logr#a-minimal-logging-api-for-go) API.
41+
The key idea is that libraries are passed a logger instance by their caller
42+
and use that for logging instead of accessing a global logger.
43+
The binary decides the logging implementation, not the libraries.
44+
The go-logr API is designed around structured logging and supports attaching
45+
additional information to a logger.
46+
-->
47+
## 上下文日志记录是什么? {#what-is-contextual-logging}
48+
49+
[上下文日志记录](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging)基于
50+
[go-logr](https://github.com/go-logr/logr#a-minimal-logging-api-for-go) API。
51+
关键思想是调用者将一个日志生成器实例传递给库,并使用它进行日志记录而不是访问全局日志生成器。
52+
二进制文件而不是库负责选择日志记录的实现。go-logr API 围绕结构化日志记录而设计,并支持向日志生成器提供额外信息。
53+
54+
<!--
55+
This enables additional use cases:
56+
57+
- The caller can attach additional information to a logger:
58+
- [WithName](<https://pkg.go.dev/github.com/go-logr/logr#Logger.WithName>) adds a "logger" key with the names concatenated by a dot as value
59+
- [WithValues](<https://pkg.go.dev/github.com/go-logr/logr#Logger.WithValues>) adds key/value pairs
60+
61+
When passing this extended logger into a function, and the function uses it
62+
instead of the global logger, the additional information is then included
63+
in all log entries, without having to modify the code that generates the log entries.
64+
This is useful in highly parallel applications where it can become hard to identify
65+
all log entries for a certain operation, because the output from different operations gets interleaved.
66+
67+
- When running unit tests, log output can be associated with the current test.
68+
Then, when a test fails, only the log output of the failed test gets shown by go test.
69+
That output can also be more verbose by default because it will not get shown for successful tests.
70+
Tests can be run in parallel without interleaving their output.
71+
-->
72+
这一设计可以支持某些额外的使用场景:
73+
74+
- 调用者可以为日志生成器提供额外的信息:
75+
- [WithName](<https://pkg.go.dev/github.com/go-logr/logr#Logger.WithName>) 添加一个 “logger” 键,
76+
并用句点(.)将名称的各个部分串接起来作为取值
77+
- [WithValues](<https://pkg.go.dev/github.com/go-logr/logr#Logger.WithValues>) 添加键/值对
78+
79+
当将此经过扩展的日志生成器传递到函数中,并且该函数使用它而不是全局日志生成器时,
80+
所有日志条目中都会包含所给的额外信息,而无需修改生成日志条目的代码。
81+
这一特点在高度并行的应用中非常有用。在这类应用中,很难辨识某操作的所有日志条目,因为不同操作的输出是交错的。
82+
83+
- 运行单元测试时,日志输出可以与当前测试相关联。且当测试失败时,go test 仅显示失败测试的日志输出。
84+
默认情况下,该输出也可能更详细,因为它不会在成功的测试中显示。测试可以并行运行,而无需交错输出。
85+
86+
<!--
87+
One of the design decisions for contextual logging was to allow attaching a logger as value to a `context.Context`.
88+
Since the logger encapsulates all aspects of the intended logging for the call,
89+
it is *part* of the context, and not just *using* it. A practical advantage is that many APIs
90+
already have a `ctx` parameter or can add one. This provides additional advantages, like being able to
91+
get rid of `context.TODO()` calls inside the functions.
92+
-->
93+
上下文日志记录的设计决策之一是允许将日志生成器作为值附加到 `context.Context` 之上。
94+
由于日志生成器封装了调用所预期的、与日志记录相关的所有元素,
95+
因此它是 context 的**一部分**,而不仅仅是**使用**它。这一设计的一个比较实际的优点是,
96+
许多 API 已经有一个 `ctx` 参数,或者可以添加一个 `ctx` 参数。
97+
进而产生的额外好处还包括比如可以去掉函数内的 `context.TODO()` 调用。
98+
99+
<!--
100+
## How to use it
101+
102+
The contextual logging feature is alpha starting from Kubernetes v1.24,
103+
so it requires the `ContextualLogging` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/) to be enabled.
104+
If you want to test the feature while it is alpha, you need to enable this feature gate
105+
on the `kube-controller-manager` and the `kube-scheduler`.
106+
-->
107+
## 如何使用它 {#how-to-use-it}
108+
109+
从 Kubernetes v1.24 开始,上下文日志记录功能处于 Alpha 状态,因此它需要启用
110+
`ContextualLogging` [特性门控](/docs/reference/command-line-tools-reference/feature-gates/)
111+
如果你想在该功能处于 Alpha 状态时对其进行测试,则需要在 `kube-controller-manager``kube-scheduler` 上启用此特性门控。
112+
113+
<!--
114+
For the `kube-scheduler`, there is one thing to note, in addition to enabling
115+
the `ContextualLogging` feature gate, instrumentation also depends on log verbosity.
116+
To avoid slowing down the scheduler with the logging instrumentation for contextual logging added for 1.29,
117+
it is important to choose carefully when to add additional information:
118+
- At `-v3` or lower, only `WithValues("pod")` is used once per scheduling cycle.
119+
This has the intended effect that all log messages for the cycle include the pod information.
120+
Once contextual logging is GA, "pod" key/value pairs can be removed from all log calls.
121+
- At `-v4` or higher, richer log entries get produced where `WithValues` is also used for the node (when applicable)
122+
and `WithName` is used for the current operation and plugin.
123+
-->
124+
对于 `kube-scheduler`,有一点需要注意,除了启用 `ContextualLogging` 特性门控之外,
125+
插桩行为还取决于日志的详细程度设置。
126+
为了避免因 1.29 添加的上下文日志记录工具而降低调度程序的速度,请务必仔细选择何时添加额外的信息:
127+
-`-v3` 或更低日志级别中,每个调度周期仅使用一次 `WithValues("pod")`
128+
这样做可以达到预期效果,即该周期的所有日志消息都包含 Pod 信息。
129+
一旦上下文日志记录特性到达 GA 阶段,就可以从所有日志调用中删除 “pod” 键值对。
130+
-`-v4` 或更高日志级别中,会生成更丰富的日志条目,其中 `WithValues` 也用于节点(如果适用),`WithName` 用于当前操作和插件。
131+
132+
<!--
133+
Here is an example that demonstrates the effect:
134+
-->
135+
下面的示例展示了这一效果:
136+
> I1113 08:43:37.029524 87144 default_binder.go:53] "Attempting to bind pod to node" **logger="Bind.DefaultBinder"** **pod**="kube-system/coredns-69cbfb9798-ms4pq" **node**="127.0.0.1"
137+
138+
<!--
139+
The immediate benefit is that the operation and plugin name are visible in `logger`.
140+
`pod` and `node` are already logged as parameters in individual log calls in `kube-scheduler` code.
141+
Once contextual logging is supported by more packages outside of `kube-scheduler`,
142+
they will also be visible there (for example, client-go). Once it is GA,
143+
log calls can be simplified to avoid repeating those values.
144+
-->
145+
这一设计的直接好处是在 `logger` 中可以看到操作和插件名称。`pod``node` 已作为参数记录在
146+
`kube-scheduler` 代码中的各个日志调用中。一旦 `kube-scheduler` 之外的其他包也支持上下文日志记录,
147+
在这些包(例如,client-go)中也可以看到操作和插件名称。
148+
一旦上下文日志记录特性到达 GA 阶段,就可以简化日志调用以避免重复这些值。
149+
150+
<!--
151+
In `kube-controller-manager`, `WithName` is used to add the user-visible controller name to log output,
152+
for example:
153+
-->
154+
`kube-controller-manager` 中,`WithName` 被用来在日志中输出用户可见的控制器名称,例如:
155+
156+
> I1113 08:43:29.284360 87141 graph_builder.go:285] "garbage controller monitor not synced: no monitors" **logger="garbage-collector-controller"**
157+
158+
<!--
159+
The `logger=”garbage-collector-controller”` was added by the `kube-controller-manager` core
160+
when instantiating that controller and appears in all of its log entries - at least as long as the code
161+
that it calls supports contextual logging. Further work is needed to convert shared packages like client-go.
162+
-->
163+
`logger=”garbage-collector-controller”` 是由 `kube-controller-manager`
164+
核心代码在实例化该控制器时添加的,会出现在其所有日志条目中——只要它所调用的代码支持上下文日志记录。
165+
转换像 client-go 这样的共享包还需要额外的工作。
166+
167+
<!--
168+
## Performance impact
169+
170+
Supporting contextual logging in a package, i.e. accepting a logger from a caller, is cheap.
171+
No performance impact was observed for the `kube-scheduler`. As noted above,
172+
adding `WithName` and `WithValues` needs to be done more carefully.
173+
-->
174+
## 性能影响 {#performance-impact}
175+
176+
在包中支持上下文日志记录,即接受来自调用者的记录器,成本很低。
177+
没有观察到 `kube-scheduler` 的性能影响。如上所述,添加 `WithName``WithValues` 需要更加小心。
178+
179+
<!--
180+
In Kubernetes 1.29, enabling contextual logging at production verbosity (`-v3` or lower)
181+
caused no measurable slowdown for the `kube-scheduler` and is not expected for the `kube-controller-manager` either.
182+
At debug levels, a 28% slowdown for some test cases is still reasonable given that the resulting logs make debugging easier.
183+
For details, see the [discussion around promoting the feature to beta](https://github.com/kubernetes/enhancements/pull/4219#issuecomment-1807811995).
184+
-->
185+
在 Kubernetes 1.29 中,以生产环境日志详细程度(`-v3` 或更低)启用上下文日志不会导致 `kube-scheduler` 速度出现明显的减慢,
186+
并且 `kube-controller-manager` 速度也不会出现明显的减慢。在 debug 级别,考虑到生成的日志使调试更容易,某些测试用例减速 28% 仍然是合理的。
187+
详细信息请参阅[有关将该特性升级为 Beta 版的讨论](https://github.com/kubernetes/enhancements/pull/4219#issuecomment-1807811995)
188+
189+
<!--
190+
## Impact on downstream users
191+
Log output is not part of the Kubernetes API and changes regularly in each release,
192+
whether it is because developers work on the code or because of the ongoing conversion
193+
to structured and contextual logging.
194+
195+
If downstream users have dependencies on specific logs,
196+
they need to be aware of how this change affects them.
197+
-->
198+
## 对下游用户的影响 {#impact-on-downstream-users}
199+
200+
日志输出不是 Kubernetes API 的一部分,并且经常在每个版本中都会出现更改,
201+
无论是因为开发人员修改代码还是因为不断转换为结构化和上下文日志记录。
202+
203+
如果下游用户对特定日志有依赖性,他们需要了解此更改如何影响他们。
204+
205+
<!--
206+
## Further reading
207+
208+
- Read the [Contextual Logging in Kubernetes 1.24](https://www.kubernetes.dev/blog/2022/05/25/contextual-logging/) article.
209+
- Read the [KEP-3077: contextual logging](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging).
210+
-->
211+
## 进一步阅读 {#further-reading}
212+
213+
- 参阅 [Kubernetes 1.24 中的上下文日志记录](https://www.kubernetes.dev/blog/2022/05/25/contextual-logging/)
214+
- 参阅 [KEP-3077:上下文日志记录](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging)
215+
216+
<!--
217+
## Get involved
218+
219+
If you're interested in getting involved, we always welcome new contributors to join us.
220+
Contextual logging provides a fantastic opportunity for you to contribute to Kubernetes development and make a meaningful impact.
221+
By joining [Structured Logging WG](https://github.com/kubernetes/community/tree/master/wg-structured-logging),
222+
you can actively participate in the development of Kubernetes and make your first contribution.
223+
It's a great way to learn and engage with the community while gaining valuable experience.
224+
-->
225+
## 如何参与 {#get-involved}
226+
227+
如果你有兴趣参与,我们始终欢迎新的贡献者加入我们。上下文日志记录为你参与
228+
Kubernetes 开发做出贡献并产生有意义的影响提供了绝佳的机会。
229+
通过加入 [Structured Logging WG](https://github.com/kubernetes/community/tree/master/wg-structured-logging)
230+
你可以积极参与 Kubernetes 的开发并做出你的第一个贡献。这是学习和参与社区并获得宝贵经验的好方法。
231+
232+
<!--
233+
We encourage you to explore the repository and familiarize yourself with the ongoing discussions and projects.
234+
It's a collaborative environment where you can exchange ideas, ask questions, and work together with other contributors.
235+
-->
236+
我们鼓励你探索存储库并熟悉正在进行的讨论和项目。这是一个协作环境,你可以在这里交流想法、提出问题并与其他贡献者一起工作。
237+
238+
<!--
239+
If you have any questions or need guidance, don't hesitate to reach out to us
240+
and you can do so on our [public Slack channel](https://kubernetes.slack.com/messages/wg-structured-logging).
241+
If you're not already part of that Slack workspace, you can visit [https://slack.k8s.io/](https://slack.k8s.io/)
242+
for an invitation.
243+
-->
244+
如果你有任何疑问或需要指导,请随时与我们联系,你可以通过我们的[公共 Slack 频道](https://kubernetes.slack.com/messages/wg-structured-logging)联系我们。
245+
如果你尚未加入 Slack 工作区,可以访问 [https://slack.k8s.io/](https://slack.k8s.io/) 获取邀请。
246+
247+
<!--
248+
We would like to express our gratitude to all the contributors who provided excellent reviews,
249+
shared valuable insights, and assisted in the implementation of this feature (in alphabetical order):
250+
-->
251+
我们要向所有提供精彩评论、分享宝贵见解并协助实施此功能的贡献者表示感谢(按字母顺序排列):
252+
253+
- Aldo Culquicondor ([alculquicondor](https://github.com/alculquicondor))
254+
- Andy Goldstein ([ncdc](https://github.com/ncdc))
255+
- Feruzjon Muyassarov ([fmuyassarov](https://github.com/fmuyassarov))
256+
- Freddie ([freddie400](https://github.com/freddie400))
257+
- JUN YANG ([yangjunmyfm192085](https://github.com/yangjunmyfm192085))
258+
- Kante Yin ([kerthcet](https://github.com/kerthcet))
259+
- Kiki ([carlory](https://github.com/carlory))
260+
- Lucas Severo Alve ([knelasevero](https://github.com/knelasevero))
261+
- Maciej Szulik ([soltysh](https://github.com/soltysh))
262+
- Mengjiao Liu ([mengjiao-liu](https://github.com/mengjiao-liu))
263+
- Naman Lakhwani ([Namanl2001](https://github.com/Namanl2001))
264+
- Oksana Baranova ([oxxenix](https://github.com/oxxenix))
265+
- Patrick Ohly ([pohly](https://github.com/pohly))
266+
- songxiao-wang87 ([songxiao-wang87](https://github.com/songxiao-wang87))
267+
- Tim Allclai ([tallclair](https://github.com/tallclair))
268+
- ZhangYu ([Octopusjust](https://github.com/Octopusjust))
269+
- Ziqi Zhao ([fatsheep9146](https://github.com/fatsheep9146))
270+
- Zac ([249043822](https://github.com/249043822))

0 commit comments

Comments
 (0)