コード例 #1
0
ファイル: process.py プロジェクト: jeffreymingyue/Python-SDK
def agent_processes(**kwargs):
    ''' Get all internal process monitors of the specified agent '''
    return internal.agent_monitors(action='agentProcesses', **kwargs)
コード例 #2
0
ファイル: process.py プロジェクト: SeanYa/Python-SDK
def agent_processes(**kwargs):
    ''' Get all internal process monitors of the specified agent '''
    return internal.agent_monitors(action='agentProcesses', **kwargs)
コード例 #3
0
ファイル: ping.py プロジェクト: kaptainkommie/Python-SDK
def agent_ping_tests(**kwargs):
    ''' Get all internal Ping monitors of the specified agent '''
    return internal.agent_monitors(action='agentPingTests', **kwargs)
コード例 #4
0
ファイル: http.py プロジェクト: SeanYa/Python-SDK
def agent_http_tests(**kwargs):
    ''' Get all internal http monitors of the specified agent '''
    return internal.agent_monitors(action='agentHttpTests', **kwargs)
コード例 #5
0
ファイル: http.py プロジェクト: kaptainkommie/Python-SDK
def agent_http_tests(**kwargs):
    ''' Get all internal http monitors of the specified agent '''
    return internal.agent_monitors(action='agentHttpTests', **kwargs)
コード例 #6
0
ファイル: loadavg.py プロジェクト: SeanYa/Python-SDK
def agent_load_avg(**kwargs):
    """ Get all internal load monitors of the specified agent """
    return internal.agent_monitors(action="agentLoadAvg", **kwargs)
コード例 #7
0
ファイル: drive.py プロジェクト: kaptainkommie/Python-SDK
def agent_drives(**kwargs):
    ''' Get all internal drive monitors of the specified agent '''
    return internal.agent_monitors(action='agentDrives', **kwargs)
コード例 #8
0
def agent_load_avg(**kwargs):
    ''' Get all internal load monitors of the specified agent '''
    return internal.agent_monitors(action='agentLoadAvg', **kwargs)
コード例 #9
0
ファイル: memory.py プロジェクト: kaptainkommie/Python-SDK
def agent_memory(**kwargs):
    ''' Get all internal memory monitors of the specified agent '''
    return internal.agent_monitors(action='agentMemory', **kwargs)
コード例 #10
0
ファイル: memory.py プロジェクト: SeanYa/Python-SDK
def agent_memory(**kwargs):
    """ Get all internal memory monitors of the specified agent """
    return internal.agent_monitors(action="agentMemory", **kwargs)