Author: justi9
Date: 2008-12-12 12:46:11 -0500 (Fri, 12 Dec 2008)
New Revision: 2992
Modified:
mgmt/trunk/cumin/python/cumin/collector.strings
mgmt/trunk/cumin/python/cumin/negotiator.strings
mgmt/trunk/cumin/python/cumin/scheduler.strings
Log:
Use the sysimage table instead of the deprecated system table
Modified: mgmt/trunk/cumin/python/cumin/collector.strings
===================================================================
--- mgmt/trunk/cumin/python/cumin/collector.strings 2008-12-12 16:40:01 UTC (rev 2991)
+++ mgmt/trunk/cumin/python/cumin/collector.strings 2008-12-12 17:46:11 UTC (rev 2992)
@@ -5,7 +5,7 @@
y.id as system_id,
y.node_name as system_name
from collector as c
-left outer join system as y on c.system = y.node_name
+left outer join sysimage as y on c.system = y.node_name
left outer join collector_stats as cs on cs.id = c.stats_curr_id
{sql_where}
{sql_orderby}
Modified: mgmt/trunk/cumin/python/cumin/negotiator.strings
===================================================================
--- mgmt/trunk/cumin/python/cumin/negotiator.strings 2008-12-12 16:40:01 UTC (rev 2991)
+++ mgmt/trunk/cumin/python/cumin/negotiator.strings 2008-12-12 17:46:11 UTC (rev 2992)
@@ -6,7 +6,7 @@
y.node_name as system_name
from negotiator as n
left outer join negotiator_stats as c on c.id = n.stats_curr_id
-left outer join system as y on n.system = y.node_name
+left outer join sysimage as y on n.system = y.node_name
{sql_where}
{sql_orderby}
{sql_limit}
Modified: mgmt/trunk/cumin/python/cumin/scheduler.strings
===================================================================
--- mgmt/trunk/cumin/python/cumin/scheduler.strings 2008-12-12 16:40:01 UTC (rev 2991)
+++ mgmt/trunk/cumin/python/cumin/scheduler.strings 2008-12-12 17:46:11 UTC (rev 2992)
@@ -9,7 +9,7 @@
c.total_held_jobs as held
from scheduler as s
left outer join scheduler_stats as c on c.id = s.stats_curr_id
-left outer join system as y on s.system = y.node_name
+left outer join sysimage as y on s.system = y.node_name
{sql_where}
{sql_orderby}
{sql_limit}
Show replies by date