我们喜欢“顾问”进行监控。
如何提高日志记录级别以便记录更少的数据?
我阅读了有关“-v=0”命令参数的信息,但找不到进一步的文档。
cAdvisor 的日志记录取自 glog。如果您通过其他一些存储库跟踪评论,您最终会到达这里:https ://github.com/google/glog/blob/master/doc/glog.html
对您来说重要的部分是:
严重级别的数量分别为
INFO
、WARNING
、ERROR
和、、和。FATAL
0
1
2
3
所以使用相应-v
设置的标志来清理你的日志文件
你可以试试:
--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 文档,目前没有办法这样做。