cadvisor - 如何减少日志数量
cadvisor - how to reduce the number of logs
我们喜欢'cadvisor'进行监控。
如何提高日志记录级别以减少记录的数据?
我阅读了有关“-v=0”命令参数的信息,但找不到更多文档。
你可以试试:
--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 documentation 目前还没有办法。
cAdvisor 的日志记录取自 glog。如果您通过其他一些回购跟踪评论,您最终会到达这里:https://github.com/google/glog/blob/master/doc/glog.html
对您来说重要的部分是:
The numbers of severity levels INFO
, WARNING
, ERROR
, and FATAL
are 0
, 1
, 2
, and 3
, respectively.
因此使用相应设置的 -v
标志来清理您的日志文件
我们喜欢'cadvisor'进行监控。
如何提高日志记录级别以减少记录的数据?
我阅读了有关“-v=0”命令参数的信息,但找不到更多文档。
你可以试试:
--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 documentation 目前还没有办法。
cAdvisor 的日志记录取自 glog。如果您通过其他一些回购跟踪评论,您最终会到达这里:https://github.com/google/glog/blob/master/doc/glog.html
对您来说重要的部分是:
The numbers of severity levels
INFO
,WARNING
,ERROR
, andFATAL
are0
,1
,2
, and3
, respectively.
因此使用相应设置的 -v
标志来清理您的日志文件