cloudpassage/connector

View on GitHub
lib/settings.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""HaloEvent connector settings"""


def per_page():
    """max events return per page"""
    return 100


def pagination_limit():
    """max page return"""
    return 50


def historical_limit():
    """max days"""
    return 90


def threads():
    """max parallel threads"""
    return 5

def eventtype():
    """all events"""
    return ""

def issue_type():
    """all issues"""
    return ""