kf logs

姓名

kf logs - 显示应用的日志。

摘要

kf logs APP_NAME [flags]

说明

对于每个正在运行的应用实例,其日志从 Kubernetes 日志端点流式传输。

如果应用实例变化或与 Kubernetes 的连接超时,日志流可能会显示重复的日志。

当集群上的空间允许时,将保留应用实例的日志;但当空间不足或超过保留日期时将被删除。Cloud Logging 是一种更可靠的访问历史日志的机制。

如果您需要特定实例的日志,请使用 kubectl CLI。

示例

# Follow/tail the log stream
kf logs myapp

# Follow/tail the log stream with 20 lines of context
kf logs myapp -n 20

# Get recent logs from the App
kf logs myapp --recent

# Get the most recent 200 lines of logs from the App
kf logs myapp --recent -n 200

# Get the logs of Tasks running from the App
kf logs myapp --task

标志

-h, --help

有关 logs 的帮助

-n, --number=int

显示最后 N 行日志。(默认值为 10)

--recent

转储近期日志,而不是进行跟踪。

--task

跟踪 Tasks 任务日志,而不是应用。

继承的标志

这些标志继承自父命令。

--as=string

操作要模拟的用户名。

--as-group=strings

操作要模拟的群组。多次添加此标志可指定多个群组。

--config=string

用于 CLI 请求的 Kf 配置文件的路径。

--kubeconfig=string

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

--log-http

将 HTTP 请求记录到标准错误。

--space=string

用于对其运行命令的空间。此标志会替换当前所针对的空间。