monitor TQ will indicate green when queue_limit has been reached.

This commit is contained in:
Ilan Steemers
2015-07-24 14:57:33 +02:00
committed by Ilan
parent 266a0dbcb1
commit c350ea13f1

View File

@@ -53,9 +53,11 @@ def monitor(run_once=False):
elif stat.status == Conf.IDLE:
status = str(Conf.IDLE)
# color q's
tasks = stat.task_q_size
if tasks > 0:
tasks = term.cyan(str(tasks))
tasks = str(stat.task_q_size)
if stat.task_q_size > 0:
tasks = term.cyan(str(stat.task_q_size))
if Conf.QUEUE_LIMIT and stat.task_q_size == Conf.QUEUE_LIMIT:
tasks = term.green(str(stat.task_q_size))
results = stat.done_q_size
if results > 0:
results = term.cyan(str(results))