<%inherit file="base.html"/> % if client:
Watcher ${name}
${client.get_option(name, 'numprocesses')} processes
CPU
Memory
%for pid in client.get_pids(name):
Process #${pid} Kill
CPU 0.0 %
Mem 0.0 %
%endfor
Add process
+
Options
<% options = dict(client.get_options(name)) %>
Command to run. ${options['cmd']}
Arguments passed to the command. ${options['args']}
Environment passed to the command. ${options['env']}
Do we run the command in the shell ? ${options['shell']}
uid (defaults to the one used for the circusd process) ${options['uid']}
gid (defaults to the one used for the circusd process) ${options['gid']}
Working directory. ${options['working_dir']}
Number of processes + ${options['numprocesses']} -
Maximum number of attempts to start a process. ${options['max_retry']}
Warmup delay in seconds after a process is started. ${options['warmup_delay']}
Number of seconds to wait before retrying to start a flapping process. ${options['retry_in']}
% endif