commit
8f3d4134f1
|
|
@ -33,8 +33,6 @@ klog is the Kubernetes logging library. [klog](https://github.com/kubernetes/klo
|
||||||
generates log messages for the Kubernetes system components.
|
generates log messages for the Kubernetes system components.
|
||||||
|
|
||||||
For more information about klog configuration, see the [Command line tool reference](/docs/reference/command-line-tools-reference/).
|
For more information about klog configuration, see the [Command line tool reference](/docs/reference/command-line-tools-reference/).
|
||||||
|
|
||||||
An example of the klog native format:
|
|
||||||
-->
|
-->
|
||||||
klog 是 Kubernetes 的日志库。
|
klog 是 Kubernetes 的日志库。
|
||||||
[klog](https://github.com/kubernetes/klog)
|
[klog](https://github.com/kubernetes/klog)
|
||||||
|
|
@ -42,26 +40,111 @@ klog 是 Kubernetes 的日志库。
|
||||||
|
|
||||||
有关 klog 配置的更多信息,请参见[命令行工具参考](/zh/docs/reference/command-line-tools-reference/)。
|
有关 klog 配置的更多信息,请参见[命令行工具参考](/zh/docs/reference/command-line-tools-reference/)。
|
||||||
|
|
||||||
klog 原始格式的示例:
|
<!--
|
||||||
|
Kubernetes is in the process of simplifying logging in its components. The
|
||||||
|
following klog command line flags [are
|
||||||
|
deprecated](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/2845-deprecate-klog-specific-flags-in-k8s-components)
|
||||||
|
starting with Kubernetes 1.23 and will be removed in a future release:
|
||||||
|
-->
|
||||||
|
Kubernetes 正在进行简化其组件日志的努力。下面的 klog 命令行参数从 Kubernetes 1.23
|
||||||
|
开始[已被废弃](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/2845-deprecate-klog-specific-flags-in-k8s-components),
|
||||||
|
会在未来版本中移除:
|
||||||
|
|
||||||
|
- `--add-dir-header`
|
||||||
|
- `--alsologtostderr`
|
||||||
|
- `--log-backtrace-at`
|
||||||
|
- `--log-dir`
|
||||||
|
- `--log-file`
|
||||||
|
- `--log-file-max-size`
|
||||||
|
- `--logtostderr`
|
||||||
|
- `--one-output`
|
||||||
|
- `--skip-headers`
|
||||||
|
- `--skip-log-headers`
|
||||||
|
- `--stderrthreshold`
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Output will always be written to stderr, regardless of the output
|
||||||
|
format. Output redirection is expected to be handled by the component which
|
||||||
|
invokes a Kubernetes component. This can be a POSIX shell or a tool like
|
||||||
|
systemd.
|
||||||
|
-->
|
||||||
|
输出总会被写到标准错误输出(stderr)之上,无论输出格式如何。
|
||||||
|
对输出的重定向将由调用 Kubernetes 组件的软件来处理。
|
||||||
|
这一软件可以是 POSIX Shell 或者类似 systemd 这样的工具。
|
||||||
|
|
||||||
|
<!--
|
||||||
|
In some cases, for example a distroless container or a Windows system service,
|
||||||
|
those options are not available. Then the
|
||||||
|
[`kube-log-runner`](https://github.com/kubernetes/kubernetes/blob/d2a8a81639fcff8d1221b900f66d28361a170654/staging/src/k8s.io/component-base/logs/kube-log-runner/README.md)
|
||||||
|
binary can be used as wrapper around a Kubernetes component to redirect
|
||||||
|
output. A prebuilt binary is included in several Kubernetes base images under
|
||||||
|
its traditional name as `/go-runner` and as `kube-log-runner` in server and
|
||||||
|
node release archives.
|
||||||
|
-->
|
||||||
|
在某些场合下,例如对于无发行主体的(distroless)容器或者 Windows 系统服务,
|
||||||
|
这些替代方案都是不存在的。那么你可以使用
|
||||||
|
[`kube-log-runner`](https://github.com/kubernetes/kubernetes/blob/d2a8a81639fcff8d1221b900f66d28361a170654/staging/src/k8s.io/component-base/logs/kube-log-runner/README.md)
|
||||||
|
可执行文件来作为 Kubernetes 的封装层,完成对输出的重定向。
|
||||||
|
在很多 Kubernetes 基础镜像中,都包含一个预先构建的可执行程序。
|
||||||
|
这个程序原来称作 `/go-runner`,而在服务器和节点的发行版本库中,称作 `kube-log-runner`。
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This table shows how `kube-log-runner` invocations correspond to shell redirection:
|
||||||
|
-->
|
||||||
|
下表展示的是 `kube-log-runner` 调用与 Shell 重定向之间的对应关系:
|
||||||
|
|
||||||
|
<!--
|
||||||
|
| Usage | POSIX shell (such as bash) | `kube-log-runner <options> <cmd>` |
|
||||||
|
| -----------------------------------------|----------------------------|-------------------------------------------------------------|
|
||||||
|
| Merge stderr and stdout, write to stdout | `2>&1` | `kube-log-runner` (default behavior) |
|
||||||
|
| Redirect both into log file | `1>>/tmp/log 2>&1` | `kube-log-runner -log-file=/tmp/log` |
|
||||||
|
| Copy into log file and to stdout | `2>&1 \| tee -a /tmp/log` | `kube-log-runner -log-file=/tmp/log -also-stdout` |
|
||||||
|
| Redirect only stdout into log file | `>/tmp/log` | `kube-log-runner -log-file=/tmp/log -redirect-stderr=false` |
|
||||||
|
-->
|
||||||
|
| 用法 | POSIX Shell(例如 Bash) | `kube-log-runner <options> <cmd>` |
|
||||||
|
| --------------------------------|--------------------------|------------------------------------|
|
||||||
|
| 合并 stderr 与 stdout,写出到 stdout | `2>&1` | `kube-log-runner`(默认行为 )|
|
||||||
|
| 将 stderr 与 stdout 重定向到日志文件 | `1>>/tmp/log 2>&1` | `kube-log-runner -log-file=/tmp/log` |
|
||||||
|
| 输出到 stdout 并复制到日志文件中 | `2>&1 \| tee -a /tmp/log` | `kube-log-runner -log-file=/tmp/log -also-stdout` |
|
||||||
|
| 仅将 stdout 重定向到日志 | `>/tmp/log` | `kube-log-runner -log-file=/tmp/log -redirect-stderr=false` |
|
||||||
|
|
||||||
|
<!--
|
||||||
|
### Klog output
|
||||||
|
|
||||||
|
An example of the traditional klog native format:
|
||||||
|
-->
|
||||||
|
### klog 输出
|
||||||
|
|
||||||
|
传统的 klog 原生格式示例:
|
||||||
|
|
||||||
```
|
```
|
||||||
I1025 00:15:15.525108 1 httplog.go:79] GET /api/v1/namespaces/kube-system/pods/metrics-server-v0.3.1-57c75779f-9p8wg: (1.512ms) 200 [pod_nanny/v0.0.0 (linux/amd64) kubernetes/$Format 10.56.1.19:51756]
|
I1025 00:15:15.525108 1 httplog.go:79] GET /api/v1/namespaces/kube-system/pods/metrics-server-v0.3.1-57c75779f-9p8wg: (1.512ms) 200 [pod_nanny/v0.0.0 (linux/amd64) kubernetes/$Format 10.56.1.19:51756]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The message string may contain line breaks:
|
||||||
|
-->
|
||||||
|
消息字符串可能包含换行符:
|
||||||
|
|
||||||
|
```
|
||||||
|
I1025 00:15:15.525108 1 example.go:79] This is a message
|
||||||
|
which has a line break.
|
||||||
|
```
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
### Structured Logging
|
### Structured Logging
|
||||||
-->
|
-->
|
||||||
### 结构化日志
|
### 结构化日志
|
||||||
|
|
||||||
{{< feature-state for_k8s_version="v1.19" state="alpha" >}}
|
{{< feature-state for_k8s_version="v1.23" state="beta" >}}
|
||||||
|
|
||||||
|
{{< warning >}}
|
||||||
<!--
|
<!--
|
||||||
Migration to structured log messages is an ongoing process. Not all log messages are structured in this version. When parsing log files, you must also handle unstructured log messages.
|
Migration to structured log messages is an ongoing process. Not all log messages are structured in this version. When parsing log files, you must also handle unstructured log messages.
|
||||||
|
|
||||||
Log formatting and value serialization are subject to change.
|
Log formatting and value serialization are subject to change.
|
||||||
-->
|
-->
|
||||||
{{< warning >}}
|
迁移到结构化日志消息是一个正在进行的过程。在此版本中,并非所有日志消息都是结构化的。
|
||||||
到结构化日志消息的迁移是一个持续的过程。
|
|
||||||
在此版本中,并非所有日志消息都是结构化的。
|
|
||||||
解析日志文件时,你也必须要处理非结构化日志消息。
|
解析日志文件时,你也必须要处理非结构化日志消息。
|
||||||
|
|
||||||
日志格式和值的序列化可能会发生变化。
|
日志格式和值的序列化可能会发生变化。
|
||||||
|
|
@ -69,27 +152,45 @@ Log formatting and value serialization are subject to change.
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Structured logging introduces a uniform structure in log messages allowing for programmatic extraction of information. You can store and process structured logs with less effort and cost.
|
Structured logging introduces a uniform structure in log messages allowing for programmatic extraction of information. You can store and process structured logs with less effort and cost.
|
||||||
New message format is backward compatible and enabled by default.
|
The code which generates a log message determines whether it uses the traditional unstructured klog output
|
||||||
|
or structured logging.
|
||||||
Format of structured logs:
|
|
||||||
-->
|
-->
|
||||||
结构化日志记录旨在日志消息中引入统一结构,以便以编程方式提取信息。
|
结构化日志记录旨在日志消息中引入统一结构,以便以编程方式提取信息。
|
||||||
你可以方便地用更小的开销来处理结构化日志。
|
你可以方便地用更小的开销来处理结构化日志。
|
||||||
新的消息格式向后兼容,并默认启用。
|
生成日志消息的代码决定其使用传统的非结构化的 klog 还是结构化的日志。
|
||||||
|
|
||||||
结构化日志的格式:
|
<!--
|
||||||
|
The default formatting of structured log messages is as text, with a format that
|
||||||
|
is backward compatible with traditional klog:
|
||||||
|
-->
|
||||||
|
默认的结构化日志消息是以文本形式呈现的,其格式与传统的 klog 保持向后兼容:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
<klog header> "<message>" <key1>="<value1>" <key2>="<value2>" ...
|
<klog header> "<message>" <key1>="<value1>" <key2>="<value2>" ...
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- Example: -->
|
<!--
|
||||||
|
Example:
|
||||||
|
-->
|
||||||
示例:
|
示例:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
I1025 00:15:15.525108 1 controller_utils.go:116] "Pod status updated" pod="kube-system/kubedns" status="ready"
|
I1025 00:15:15.525108 1 controller_utils.go:116] "Pod status updated" pod="kube-system/kubedns" status="ready"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Strings are quoted. Other values are formatted with
|
||||||
|
[`%+v`](https://pkg.go.dev/fmt#hdr-Printing), which may cause log messages to
|
||||||
|
continue on the next line [depending on the data](https://github.com/kubernetes/kubernetes/issues/106428).
|
||||||
|
-->
|
||||||
|
字符串在输出时会被添加引号。其他数值类型都使用 [`%+v`](https://pkg.go.dev/fmt#hdr-Printing)
|
||||||
|
来格式化,因此可能导致日志消息会延续到下一行,
|
||||||
|
[具体取决于数据本身](https://github.com/kubernetes/kubernetes/issues/106428)。
|
||||||
|
|
||||||
|
```
|
||||||
|
I1025 00:15:15.525108 1 example.go:116] "Example" data="This is text with a line break\nand \"quotation marks\"." someInt=1 someFloat=0.1 someStruct={StringField: First line,
|
||||||
|
second line.}
|
||||||
|
```
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
### JSON log format
|
### JSON log format
|
||||||
|
|
@ -98,6 +199,7 @@ I1025 00:15:15.525108 1 controller_utils.go:116] "Pod status updated" pod=
|
||||||
|
|
||||||
{{< feature-state for_k8s_version="v1.19" state="alpha" >}}
|
{{< feature-state for_k8s_version="v1.19" state="alpha" >}}
|
||||||
|
|
||||||
|
{{< warning >}}
|
||||||
<!--
|
<!--
|
||||||
JSON output does not support many standard klog flags. For list of unsupported klog flags, see the [Command line tool reference](/docs/reference/command-line-tools-reference/).
|
JSON output does not support many standard klog flags. For list of unsupported klog flags, see the [Command line tool reference](/docs/reference/command-line-tools-reference/).
|
||||||
|
|
||||||
|
|
@ -105,10 +207,8 @@ Not all logs are guaranteed to be written in JSON format (for example, during pr
|
||||||
|
|
||||||
Field names and JSON serialization are subject to change.
|
Field names and JSON serialization are subject to change.
|
||||||
-->
|
-->
|
||||||
{{<warning >}}
|
JSON 输出并不支持太多标准 klog 参数。对于不受支持的 klog 参数的列表,
|
||||||
JSON 输出并不支持太多标准 klog 参数。
|
请参见[命令行工具参考](/zh/docs/reference/command-line-tools-reference/)。
|
||||||
对于不受支持的 klog 参数的列表,请参见
|
|
||||||
[命令行工具参考](/zh/docs/reference/command-line-tools-reference/)。
|
|
||||||
|
|
||||||
并不是所有日志都保证写成 JSON 格式(例如,在进程启动期间)。
|
并不是所有日志都保证写成 JSON 格式(例如,在进程启动期间)。
|
||||||
如果你打算解析日志,请确保可以处理非 JSON 格式的日志行。
|
如果你打算解析日志,请确保可以处理非 JSON 格式的日志行。
|
||||||
|
|
@ -137,8 +237,9 @@ JSON 日志格式示例(美化输出):
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Keys with special meaning:
|
Keys with special meaning:
|
||||||
|
|
||||||
* `ts` - timestamp as Unix time (required, float)
|
* `ts` - timestamp as Unix time (required, float)
|
||||||
* `v` - verbosity (required, int, default 0)
|
* `v` - verbosity (only for info and not for error messages, int)
|
||||||
* `err` - error string (optional, string)
|
* `err` - error string (optional, string)
|
||||||
* `msg` - message (required, string)
|
* `msg` - message (required, string)
|
||||||
|
|
||||||
|
|
@ -146,11 +247,12 @@ List of components currently supporting JSON format:
|
||||||
-->
|
-->
|
||||||
具有特殊意义的 key:
|
具有特殊意义的 key:
|
||||||
* `ts` - Unix 时间风格的时间戳(必选项,浮点值)
|
* `ts` - Unix 时间风格的时间戳(必选项,浮点值)
|
||||||
* `v` - 精细度(必选项,整数,默认值 0)
|
* `v` - 精细度(仅用于 info 级别,不能用于错误信息,整数)
|
||||||
* `err` - 错误字符串(可选项,字符串)
|
* `err` - 错误字符串(可选项,字符串)
|
||||||
* `msg` - 消息(必选项,字符串)
|
* `msg` - 消息(必选项,字符串)
|
||||||
|
|
||||||
当前支持JSON格式的组件列表:
|
当前支持JSON格式的组件列表:
|
||||||
|
|
||||||
* {{< glossary_tooltip term_id="kube-controller-manager" text="kube-controller-manager" >}}
|
* {{< glossary_tooltip term_id="kube-controller-manager" text="kube-controller-manager" >}}
|
||||||
* {{< glossary_tooltip term_id="kube-apiserver" text="kube-apiserver" >}}
|
* {{< glossary_tooltip term_id="kube-apiserver" text="kube-apiserver" >}}
|
||||||
* {{< glossary_tooltip term_id="kube-scheduler" text="kube-scheduler" >}}
|
* {{< glossary_tooltip term_id="kube-scheduler" text="kube-scheduler" >}}
|
||||||
|
|
@ -158,43 +260,30 @@ List of components currently supporting JSON format:
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
### Log sanitization
|
### Log sanitization
|
||||||
|
|
||||||
{{< feature-state for_k8s_version="v1.20" state="alpha" >}}
|
|
||||||
|
|
||||||
{{<warning >}}
|
|
||||||
Log sanitization might incur significant computation overhead and therefore should not be enabled in production.
|
|
||||||
{{< /warning >}}
|
|
||||||
-->
|
-->
|
||||||
|
### 日志清洗 {#log-sanitization}
|
||||||
### 日志清理
|
|
||||||
|
|
||||||
{{< feature-state for_k8s_version="v1.20" state="alpha" >}}
|
{{< feature-state for_k8s_version="v1.20" state="alpha" >}}
|
||||||
|
|
||||||
{{<warning >}}
|
{{<warning >}}
|
||||||
日志清理可能会导致大量的计算开销,因此不应启用在生产环境中。
|
<!--
|
||||||
|
Log sanitization might incur significant computation overhead and therefore should not be enabled in production.
|
||||||
|
-->
|
||||||
|
日志清洗(Log Sanitization)可能会导致大量的计算开销,因此不应在生产环境中启用。
|
||||||
{{< /warning >}}
|
{{< /warning >}}
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
The `--experimental-logging-sanitization` flag enables the klog sanitization filter.
|
The `--experimental-logging-sanitization` flag enables the klog sanitization filter.
|
||||||
If enabled all log arguments are inspected for fields tagged as sensitive data (e.g. passwords, keys, tokens) and logging of these fields will be prevented.
|
If enabled all log arguments are inspected for fields tagged as sensitive data (e.g. passwords, keys, tokens) and logging of these fields will be prevented.
|
||||||
-->
|
-->
|
||||||
|
`--experimental-logging-sanitization` 参数可用来启用 klog 清洗过滤器。
|
||||||
`--experimental-logging-sanitization` 参数可用来启用 klog 清理过滤器。
|
如果启用后,将检查所有日志参数中是否有标记为敏感数据的字段(比如:密码,密钥,令牌),
|
||||||
如果启用后,将检查所有日志参数中是否有标记为敏感数据的字段(比如:密码,密钥,令牌),并且将阻止这些字段的记录。
|
并且将阻止这些字段的记录。
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
List of components currently supporting log sanitization:
|
List of components currently supporting log sanitization:
|
||||||
* kube-controller-manager
|
|
||||||
* kube-apiserver
|
|
||||||
* kube-scheduler
|
|
||||||
* kubelet
|
|
||||||
|
|
||||||
{{< note >}}
|
|
||||||
The Log sanitization filter does not prevent user workload logs from leaking sensitive data.
|
|
||||||
{{< /note >}}
|
|
||||||
-->
|
-->
|
||||||
|
当前支持日志清洗的组件列表:
|
||||||
当前支持日志清理的组件列表:
|
|
||||||
|
|
||||||
* kube-controller-manager
|
* kube-controller-manager
|
||||||
* kube-apiserver
|
* kube-apiserver
|
||||||
|
|
@ -202,7 +291,10 @@ The Log sanitization filter does not prevent user workload logs from leaking sen
|
||||||
* kubelet
|
* kubelet
|
||||||
|
|
||||||
{{< note >}}
|
{{< note >}}
|
||||||
日志清理过滤器不会阻止用户工作负载日志泄漏敏感数据。
|
<!--
|
||||||
|
The Log sanitization filter does not prevent user workload logs from leaking sensitive data.
|
||||||
|
-->
|
||||||
|
日志清洗过滤器不会阻止用户工作负载日志泄漏敏感数据。
|
||||||
{{< /note >}}
|
{{< /note >}}
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
@ -214,8 +306,7 @@ Increasing verbosity settings logs increasingly less severe events. A verbosity
|
||||||
### 日志精细度级别
|
### 日志精细度级别
|
||||||
|
|
||||||
参数 `-v` 控制日志的精细度。增大该值会增大日志事件的数量。
|
参数 `-v` 控制日志的精细度。增大该值会增大日志事件的数量。
|
||||||
减小该值可以减小日志事件的数量。
|
减小该值可以减小日志事件的数量。增大精细度会记录更多的不太严重的事件。
|
||||||
增大精细度会记录更多的不太严重的事件。
|
|
||||||
精细度设置为 0 时只记录关键(critical)事件。
|
精细度设置为 0 时只记录关键(critical)事件。
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
@ -225,13 +316,15 @@ There are two types of system components: those that run in a container and thos
|
||||||
that do not run in a container. For example:
|
that do not run in a container. For example:
|
||||||
|
|
||||||
* The Kubernetes scheduler and kube-proxy run in a container.
|
* The Kubernetes scheduler and kube-proxy run in a container.
|
||||||
* The kubelet and container runtime, for example Docker, do not run in containers.
|
* The kubelet and {{<glossary_tooltip term_id="container-runtime" text="container runtime">}}
|
||||||
|
do not run in containers.
|
||||||
-->
|
-->
|
||||||
### 日志位置
|
### 日志位置
|
||||||
|
|
||||||
有两种类型的系统组件:运行在容器中的组件和不运行在容器中的组件。例如:
|
有两种类型的系统组件:运行在容器中的组件和不运行在容器中的组件。例如:
|
||||||
|
|
||||||
* Kubernetes 调度器和 kube-proxy 在容器中运行。
|
* Kubernetes 调度器和 kube-proxy 在容器中运行。
|
||||||
* kubelet 和容器运行时,例如 Docker,不在容器中运行。
|
* kubelet 和{{<glossary_tooltip term_id="container-runtime" text="容器运行时">}}不在容器中运行。
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
On machines with systemd, the kubelet and container runtime write to journald.
|
On machines with systemd, the kubelet and container runtime write to journald.
|
||||||
|
|
@ -254,8 +347,11 @@ The `logrotate` tool rotates logs daily, or once the log size is greater than 10
|
||||||
<!--
|
<!--
|
||||||
* Read about the [Kubernetes Logging Architecture](/docs/concepts/cluster-administration/logging/)
|
* Read about the [Kubernetes Logging Architecture](/docs/concepts/cluster-administration/logging/)
|
||||||
* Read about [Structured Logging](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/1602-structured-logging)
|
* Read about [Structured Logging](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/1602-structured-logging)
|
||||||
|
* Read about [deprecation of klog flags](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/2845-deprecate-klog-specific-flags-in-k8s-components)
|
||||||
* Read about the [Conventions for logging severity](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md)
|
* Read about the [Conventions for logging severity](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md)
|
||||||
-->
|
-->
|
||||||
* 阅读 [Kubernetes 日志架构](/zh/docs/concepts/cluster-administration/logging/)
|
* 阅读 [Kubernetes 日志架构](/zh/docs/concepts/cluster-administration/logging/)
|
||||||
* 阅读 [Structured Logging](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/1602-structured-logging)
|
* 阅读[结构化日志提案(英文)](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/1602-structured-logging)
|
||||||
* 阅读 [Conventions for logging severity](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md)
|
* 阅读 [klog 参数的废弃(英文)](https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/2845-deprecate-klog-specific-flags-in-k8s-components)
|
||||||
|
* 阅读[日志严重级别约定(英文)](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue