本文整理汇总了Python中Utils.LadDiagnosticUtil.getFileCfgFromLadCfg方法的典型用法代码示例。如果您正苦于以下问题:Python LadDiagnosticUtil.getFileCfgFromLadCfg方法的具体用法?Python LadDiagnosticUtil.getFileCfgFromLadCfg怎么用?Python LadDiagnosticUtil.getFileCfgFromLadCfg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Utils.LadDiagnosticUtil
的用法示例。
在下文中一共展示了LadDiagnosticUtil.getFileCfgFromLadCfg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_file_monitoring_config
# 需要导入模块: from Utils import LadDiagnosticUtil [as 别名]
# 或者: from Utils.LadDiagnosticUtil import getFileCfgFromLadCfg [as 别名]
def get_file_monitoring_config(self):
"""
Get rsyslog file monitoring (imfile module) config from LAD extension settings.
First look up 'ladCfg' and use it if one is there. If not, then get 'fileCfg' at the top level
of public settings.
:return: List of dictionaries specifying files to monitor and Azure table names for the destinations
of the monitored files. E.g.:
[
{"file":"/var/log/a.log", "table":"aLog"},
{"file":"/var/log/b.log", "table":"bLog"}
]
"""
lad_cfg = self.read_public_config('ladCfg')
file_cfg = LadUtil.getFileCfgFromLadCfg(lad_cfg)
if not file_cfg:
file_cfg = self.read_public_config('fileCfg')
return file_cfg
示例2: getFileCfg
# 需要导入模块: from Utils import LadDiagnosticUtil [as 别名]
# 或者: from Utils.LadDiagnosticUtil import getFileCfgFromLadCfg [as 别名]
def getFileCfg():
ladCfg = readPublicConfig('ladCfg')
fileCfg = LadUtil.getFileCfgFromLadCfg(ladCfg)
if not fileCfg:
fileCfg = readPublicConfig('fileCfg')
return fileCfg