0

我们喜欢“顾问”进行监控。

如何提高日志记录级别以便记录更少的数据?

我阅读了有关“-v=0”命令参数的信息,但找不到进一步的文档。

4

2 回答 2

2

cAdvisor 的日志记录取自 glog。如果您通过其他一些存储库跟踪评论,您最终会到达这里:https ://github.com/google/glog/blob/master/doc/glog.html

对您来说重要的部分是:

严重级别的数量分别为INFOWARNINGERROR和、、和。FATAL0123

所以使用相应-v设置的标志来清理你的日志文件

于 2020-02-13T16:14:45.470 回答
1

你可以试试:

--log_dir="" #: If non-empty, write log files in this directory
--logtostderr=false #: log to standard error instead of files
--alsologtostderr=false #: log to standard error as well as files
--stderrthreshold=0 #: logs at or above this threshold go to stderr
--v=1 #: log level for V logs
--vmodule= #: comma-separated list of pattern=N settings for file-filtered logging

但根据GitHub 文档,目前没有办法这样做。

于 2020-02-13T16:12:33.513 回答