本文整理汇总了Python中haproxy.logfile.Log.filter方法的典型用法代码示例。如果您正苦于以下问题:Python Log.filter方法的具体用法?Python Log.filter怎么用?Python Log.filter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类haproxy.logfile.Log
的用法示例。
在下文中一共展示了Log.filter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from haproxy.logfile import Log [as 别名]
# 或者: from haproxy.logfile.Log import filter [as 别名]
def main(args):
if show_help(args):
return
# show the command list
if args['list_commands']:
print_commands()
# no need to process further
return
# show the filter list
if args['list_filters']:
print_filters()
# no need to process further
return
# create a Log instance and parse the log file
log_file = Log(
logfile=args['log'],
)
# apply the time frame filter
if args['start'] or args['delta']:
start = args['start'] or ''
delta = args['delta'] or ''
filter_func = filters.filter_time_frame(start, delta)
log_file = log_file.filter(filter_func)
# apply all other filters given
if args['filters']:
for filter_data in args['filters']:
arg = filter_data[1] or ''
filter_func = getattr(filters, 'filter_{0}'.format(filter_data[0]))
log_file = log_file.filter(
filter_func(arg),
reverse=args['negate_filter'],
)
# run all commands
for command in args['commands']:
string = 'command: {0}'.format(command)
print(string)
print('=' * len(string))
cmd = getattr(log_file, 'cmd_{0}'.format(command))
result = cmd()
print(result)
return log_file # return the log_file object so that tests can inspect it
示例2: test_negate_filter
# 需要导入模块: from haproxy.logfile import Log [as 别名]
# 或者: from haproxy.logfile.Log import filter [as 别名]
def test_negate_filter(self):
"""Check that reversing a filter output works as expected."""
filter_func = filters.filter_ssl()
log_file = Log(
logfile='haproxy/tests/files/connection.log',
)
# total number of log lines
self.assertEqual(log_file.cmd_counter(), 12)
# only SSL lines
only_ssl = log_file.filter(filter_func)
self.assertEqual(only_ssl.cmd_counter(), 7)
# non SSL lines
non_ssl = log_file.filter(filter_func, reverse=True)
self.assertEqual(non_ssl.cmd_counter(), 5)
# we did get all lines?
self.assertEqual(
log_file.cmd_counter(),
only_ssl.cmd_counter() + non_ssl.cmd_counter()
)