Custom Query (101 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 101)

Ticket Resolution Summary Owner Reporter
#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.

#44 invalid Problems displaying job list link in main ganglia web interface somebody dorian_minarolli@…
Description

Hi every body

I have some problems displaying the link(small-size cluster image) to the job list in ganglia web page.I have followed the procedure of documentation for installing Monarch and its web iterface My question is does Monarch web interface requires absolutely postgreSql in order to function or or it is only required only if you install jobarchived. Thank you for your help Dori

Note: See TracQuery for help on using queries.