Custom Query (101 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 101)

Ticket Resolution Summary Owner Reporter
#66 invalid pChart dependency is mentioned nowhere somebody felix@…
Description

As far as I can see r527 introduced a dependency to pChart, but this does not seem to be mentioned in Installation or Requirements documents...

#67 fixed small patch to get lsf support working ramonb felix@…
Description

I had to patch jobmonarch as follows to get it to work with LSF (lava):

[root@master52 jobmonarch]# svn diff
Index: jobmond/jobmond.py
===================================================================
--- jobmond/jobmond.py  (revision 556)
+++ jobmond/jobmond.py  (working copy)
@@ -717,7 +717,14 @@

                 if my_val_str:

-                       my_val_str = my_val_str + ' ' + val_name + '=' + val_value
+                       if type(val_value) != list:
+
+                               my_val_str = my_val_str + ' ' + val_name + '=' + val_value
+
+                       else:
+
+                               my_val_str = my_val_str + ' ' + val_name + '= '
+
                 else:
                        my_val_str = val_name + '=' + val_value

@@ -1147,6 +1154,7 @@
                         if requested_cpus == None or requested_cpus == "":
                                 requested_cpus = 1

+               display_queue = 1
                if QUEUE:
                 for q in QUEUE:
                        if q == queue:

I am using ganglia 3.0.7 and Python 2.4.3

#68 fixed [PATCH] Reduce the php notices a little ramonb felix@…
Description

Running jobmonarch gave me hundreds of warnings like:

[Wed Nov 05 20:58:56 2008] [error] [client 10.10.8.99] PHP Notice:  Use of undefined constant VAL - assumed 'VAL' in /var/www/html/ganglia/addons/job_monarch/overview.php on line 294

This is fixed with attached patch.

Note: See TracQuery for help on using queries.