kubectl 日志

概要

打印 Pod 或指定资源中容器的日志。如果 Pod 只有一个容器,则容器名称是可选的。

kubectl logs [-f] [-p] (POD | TYPE/NAME) [-c CONTAINER]

示例

  # Return snapshot logs from pod nginx with only one container
  kubectl logs nginx
  
  # Return snapshot logs from pod nginx, prefixing each line with the source pod and container name
  kubectl logs nginx --prefix
  
  # Return snapshot logs from pod nginx, limiting output to 500 bytes
  kubectl logs nginx --limit-bytes=500
  
  # Return snapshot logs from pod nginx, waiting up to 20 seconds for it to start running.
  kubectl logs nginx --pod-running-timeout=20s
  
  # Return snapshot logs from pod nginx with multi containers
  kubectl logs nginx --all-containers=true
  
  # Return snapshot logs from all pods in the deployment nginx
  kubectl logs deployment/nginx --all-pods=true
  
  # Return snapshot logs from all containers in pods defined by label app=nginx
  kubectl logs -l app=nginx --all-containers=true
  
  # Return snapshot logs from all pods defined by label app=nginx, limiting concurrent log requests to 10 pods
  kubectl logs -l app=nginx --max-log-requests=10
  
  # Return snapshot of previous terminated ruby container logs from pod web-1
  kubectl logs -p -c ruby web-1
  
  # Begin streaming the logs from pod nginx, continuing even if errors occur
  kubectl logs nginx -f --ignore-errors=true
  
  # Begin streaming the logs of the ruby container in pod web-1
  kubectl logs -f -c ruby web-1
  
  # Begin streaming the logs from all containers in pods defined by label app=nginx
  kubectl logs -f -l app=nginx --all-containers=true
  
  # Display only the most recent 20 lines of output in pod nginx
  kubectl logs --tail=20 nginx
  
  # Show all logs from pod nginx written in the last hour
  kubectl logs --since=1h nginx
  
  # Show all logs with timestamps from pod nginx starting from August 30, 2024, at 06:00:00 UTC
  kubectl logs nginx --since-time=2024-08-30T06:00:00Z --timestamps=true
  
  # Show logs from a kubelet with an expired serving certificate
  kubectl logs --insecure-skip-tls-verify-backend nginx
  
  # Return snapshot logs from first container of a job named hello
  kubectl logs job/hello
  
  # Return snapshot logs from container nginx-1 of a deployment named nginx
  kubectl logs deployment/nginx -c nginx-1

选项

--all-containers

获取 Pod 中所有容器的日志。

--all-pods

从所有 Pod 获取日志。将 prefix 设置为 true。

-c, --container string

打印此容器的日志

-f, --follow

指定是否应流式传输日志。

-h, --help

logs 的帮助

--ignore-errors

如果监视/跟踪 Pod 日志,则允许发生的任何错误都不是致命的

--insecure-skip-tls-verify-backend

跳过验证请求日志的 kubelet 的身份。理论上,攻击者可以提供无效的日志内容。如果您的 kubelet 服务证书已过期,您可能需要使用此选项。

--limit-bytes int

要返回的最大日志字节数。默认为无限制。

--max-log-requests int     默认值:5

使用选择器时,指定要跟踪的最大并发日志数。默认为 5。

--pod-running-timeout duration     默认值:20s

等待至少一个 Pod 运行的时间长度(例如 5s、2m 或 3h,高于零)

--prefix

在每行日志前添加日志来源(Pod 名称和容器名称)作为前缀

-p, --previous

如果为 true,则打印 Pod 中容器先前实例的日志(如果存在)。

-l, --selector string

选择器(标签查询)用于过滤,支持 '=','==' 和 '!='。(例如 -l key1=value1,key2=value2)。匹配的对象必须满足所有指定的标签约束。

--since duration

仅返回比相对持续时间(例如 5s、2m 或 3h)更新的日志。默认为所有日志。since-time/since 只能使用其中一个。

--since-time string

仅返回特定日期 (RFC3339) 之后的日志。默认为所有日志。since-time/since 只能使用其中一个。

--tail int     默认值:-1

要显示的最近日志文件的行数。默认为 -1,没有选择器时显示所有日志行;否则,如果提供了选择器,则默认为 10。

--timestamps

在日志输出的每一行中包含时间戳

--as string

要为操作模拟的用户名。用户可以是命名空间中的普通用户或服务帐户。

--as-group strings

要为操作模拟的组,此标志可以重复使用以指定多个组。

--as-uid string

要为操作模拟的 UID。

--cache-dir string     默认值:"$HOME/.kube/cache"

默认缓存目录

--certificate-authority string

证书颁发机构的证书文件路径

--client-certificate string

TLS 的客户端证书文件路径

--client-key string

TLS 的客户端密钥文件路径

--cluster string

要使用的 kubeconfig 集群的名称

--context string

要使用的 kubeconfig 上下文的名称

--default-not-ready-toleration-seconds int     默认值:300

指示默认添加到每个尚没有此类容忍的 Pod 的 notReady:NoExecute 容忍的 tolerationSeconds。

--default-unreachable-toleration-seconds int     默认值:300

指示默认添加到每个尚没有此类容忍的 Pod 的 unreachable:NoExecute 容忍的 tolerationSeconds。

--disable-compression

如果为 true,则对服务器的所有请求都禁用响应压缩

--insecure-skip-tls-verify

如果为 true,则不会检查服务器证书的有效性。这将使您的 HTTPS 连接不安全

--kubeconfig string

用于 CLI 请求的 kubeconfig 文件的路径。

--match-server-version

要求服务器版本与客户端版本匹配

-n, --namespace string

如果存在,则为该 CLI 请求的命名空间范围

--password string

API 服务器基本身份验证的密码

--profile string     默认值: "none"

要捕获的配置文件的名称。之一 (none|cpu|heap|goroutine|threadcreate|block|mutex)

--profile-output string     默认值: "profile.pprof"

要将配置文件写入的文件的名称

--request-timeout string     默认值: "0"

放弃单个服务器请求之前的等待时间。非零值应包含相应的时间单位(例如 1s、2m、3h)。值零表示不超时请求。

-s, --server string

Kubernetes API 服务器的地址和端口

--storage-driver-buffer-duration duration     默认值:1m0s

存储驱动程序中的写入将被缓冲此持续时间,并作为单个事务提交到非内存后端

--storage-driver-db string     默认值: "cadvisor"

数据库名称

--storage-driver-host string     默认值: "localhost:8086"

数据库主机:端口

--storage-driver-password string     默认值: "root"

数据库密码

--storage-driver-secure

使用与数据库的安全连接

--storage-driver-table string     默认值: "stats"

表名

--storage-driver-user string     默认值: "root"

数据库用户名

--tls-server-name string

用于服务器证书验证的服务器名称。如果未提供,则使用用于联系服务器的主机名

--token string

API 服务器身份验证的承载令牌

--user string

要使用的 kubeconfig 用户的名称

--username string

API 服务器基本身份验证的用户名

--version version[=true]

--version、--version=raw 打印版本信息并退出;--version=vX.Y.Z... 设置报告的版本

--warnings-as-errors

将从服务器接收的警告视为错误,并以非零退出代码退出

另请参阅

  • kubectl - kubectl 控制 Kubernetes 集群管理器

此页面是自动生成的。

如果您计划报告此页面的问题,请在问题描述中提及该页面是自动生成的。修复可能需要在 Kubernetes 项目的其他地方进行。

上次修改时间:太平洋标准时间 2024 年 12 月 12 日下午 2:44:更新 v1.32 的 kubectl 参考文档 (5c2cfa02af)