当前位置: 首页>>代码示例>>Python>>正文


Python HaproxyLogFile.filter方法代码示例

本文整理汇总了Python中haproxy.haproxy_logfile.HaproxyLogFile.filter方法的典型用法代码示例。如果您正苦于以下问题:Python HaproxyLogFile.filter方法的具体用法?Python HaproxyLogFile.filter怎么用?Python HaproxyLogFile.filter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在haproxy.haproxy_logfile.HaproxyLogFile的用法示例。


在下文中一共展示了HaproxyLogFile.filter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: main

# 需要导入模块: from haproxy.haproxy_logfile import HaproxyLogFile [as 别名]
# 或者: from haproxy.haproxy_logfile.HaproxyLogFile 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 HaproxyLogFile instance and parse the log file
    log_file = HaproxyLogFile(
        logfile=args['log'],
    )
    log_file.parse_file()

    # apply the time frame filter
    if args['start'] is not None or args['delta'] is not None:
        start = args['start'] or ''
        delta = args['delta'] or ''
        filter_string = 'filters.filter_time_frame("{0}", "{1}")'
        filter_func = eval(filter_string.format(start, delta))

        log_file = log_file.filter(filter_func)

    # apply all other filters given
    if args['filters'] is not None:
        filter_string = 'filters.filter_{0}({1})'
        for filter_data in args['filters']:
            arg = ''
            if filter_data[1] is not None:
                arg = filter_data[1]
                arg = "'{0}'".format(arg)

            filter_func = eval(filter_string.format(filter_data[0], arg))

            log_file = log_file.filter(filter_func,
                                       reverse=args['negate_filter'])

    # run all commands
    command_string = 'log_file.cmd_{0}()'
    for command in args['commands']:
        string = 'command: {0}'.format(command)
        print(string)
        print('=' * len(string))

        result = eval(command_string.format(command))
        print(result)

    return log_file  # return the log_file object so that tests can inspect it
开发者ID:triplekill,项目名称:haproxy_log_analysis,代码行数:58,代码来源:main.py

示例2: test_haproxy_log_file_negate_filter

# 需要导入模块: from haproxy.haproxy_logfile import HaproxyLogFile [as 别名]
# 或者: from haproxy.haproxy_logfile.HaproxyLogFile import filter [as 别名]
    def test_haproxy_log_file_negate_filter(self):
        """Check that reversing a filter output works as expected."""
        filter_func = filters.filter_ssl()
        log_file = HaproxyLogFile(
            logfile='haproxy/tests/files/connection.log',
        )
        log_file.parse_file()

        # 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()
        )
开发者ID:bogdangi,项目名称:haproxy_log_analysis,代码行数:26,代码来源:test_haproxy_log_file.py


注:本文中的haproxy.haproxy_logfile.HaproxyLogFile.filter方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。