docker swarm查看日志
·
目录
从头显示所有日志并持续输出
docker service logs -f xx
显示末尾最后5行并持续输出
docker service logs -f -n 5 xx
或
docker service logs -f --tail 5 xx
查看最近五分钟内的日志
docker service logs -f --since 5m xx
查看指定时间之后的日志并持续输出
docker service logs -f --since "2023-01-05T14:42:37" xx
命令参数:docker service logs --help
Usage: docker service logs [OPTIONS] SERVICE|TASK
Fetch the logs of a service or task
Options:
--details Show extra details provided to logs
-f, --follow Follow log output
--no-resolve Do not map IDs to Names in output
--no-task-ids Do not include task IDs in output
--no-trunc Do not truncate output
--raw Do not neatly format logs
--since string Show logs since timestamp (e.g. "2013-01-02T13:23:37Z") or relative (e.g. "42m" for 42 minutes)
-n, --tail string Number of lines to show from the end of the logs (default "all")
-t, --timestamps Show timestamps
更多推荐
所有评论(0)