Example #1
0
class WinService(object):
    def __init__(self):
        self.monitor = TacticMonitor()

    def init(self):
        self.monitor.mode = "init"
        self.monitor.execute()

    def run(self):
        self.monitor.mode = "monitor"
        self.monitor.execute()
Example #2
0
class WinService(object):

    def __init__(self):
        self.monitor = TacticMonitor()

   

    def init(self):
        self.monitor.mode = "init"
        self.monitor.execute()

    def run(self):
        self.monitor.mode = "monitor"
        self.monitor.execute()
Example #3
0
 def __init__(self):
     self.monitor = TacticMonitor()
Example #4
0
############################################################
#
#    Copyright (c) 2005, Southpaw Technology
#                        All Rights Reserved
#
#    PROPRIETARY INFORMATION.  This software is proprietary to
#    Southpaw Technology, and is not to be reproduced, transmitted,
#    or disclosed in any way without written permission.
#
#


# scripts that starts up a number of Tactic and monitors them
import sys
import tacticenv
from pyasm.web import TacticMonitor

if __name__ == '__main__':
    args = sys.argv[1:]
    num_processes = None
    if len(args) == 1:
        num_processes = int(args[0])

    monitor = TacticMonitor(num_processes)
    monitor.set_dev(True) 
    #monitor.set_check_interval(0)
    monitor.execute()


Example #5
0
 def __init__(self):
     self.monitor = TacticMonitor()
Example #6
0
#    Copyright (c) 2005, Southpaw Technology
#                        All Rights Reserved
#
#    PROPRIETARY INFORMATION.  This software is proprietary to
#    Southpaw Technology, and is not to be reproduced, transmitted,
#    or disclosed in any way without written permission.
#
#


# scripts that starts up a number of Tactic and monitors them
import sys, os
import tacticenv
from pyasm.web import TacticMonitor

# set it so that the temp directories are cleaned up
os.environ['TACTIC_CLEANUP'] = "true"

if __name__ == '__main__':
    args = sys.argv[1:]
    num_processes = None
    if len(args) == 1:
        num_processes = int(args[0])

    monitor = TacticMonitor(num_processes)
    
    #monitor.set_check_interval(0)
    monitor.execute()


Example #7
0
#                        All Rights Reserved
#
#    PROPRIETARY INFORMATION.  This software is proprietary to
#    Southpaw Technology, and is not to be reproduced, transmitted,
#    or disclosed in any way without written permission.
#
#


# scripts that starts up a number of Tactic and monitors them
import sys
import tacticenv
from pyasm.web import TacticMonitor

if __name__ == '__main__':
    args = sys.argv[1:]
    num_processes = None
    if len(args) == 1:
        num_processes = int(args[0])

    monitor = TacticMonitor(num_processes)
    monitor.set_dev(True) 
    #monitor.set_check_interval(0)
    monitor.mode = 'init'
    monitor.execute()
    monitor.mode = 'monitor'
    monitor.execute()
 


Example #8
0
############################################################
#
#    Copyright (c) 2005, Southpaw Technology
#                        All Rights Reserved
#
#    PROPRIETARY INFORMATION.  This software is proprietary to
#    Southpaw Technology, and is not to be reproduced, transmitted,
#    or disclosed in any way without written permission.
#
#

# scripts that starts up a number of Tactic and monitors them
import sys, os
import tacticenv
from pyasm.web import TacticMonitor

# set it so that the temp directories are cleaned up
os.environ['TACTIC_CLEANUP'] = "true"

if __name__ == '__main__':
    args = sys.argv[1:]
    num_processes = None
    if len(args) == 1:
        num_processes = int(args[0])

    monitor = TacticMonitor(num_processes)

    #monitor.set_check_interval(0)
    monitor.execute()
Example #9
0
def start():
    monitor = TacticMonitor()
    monitor.set_check_interval(0)
    monitor.execute()
Example #10
0
############################################################
#
#    Copyright (c) 2005, Southpaw Technology
#                        All Rights Reserved
#
#    PROPRIETARY INFORMATION.  This software is proprietary to
#    Southpaw Technology, and is not to be reproduced, transmitted,
#    or disclosed in any way without written permission.
#
#

# scripts that starts up a number of Tactic and monitors them
import sys
import tacticenv
from pyasm.web import TacticMonitor

if __name__ == '__main__':
    args = sys.argv[1:]
    num_processes = None
    if len(args) == 1:
        num_processes = int(args[0])

    monitor = TacticMonitor(num_processes)
    monitor.set_dev(True)
    #monitor.set_check_interval(0)
    monitor.execute()