You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
(927) |
Apr
(419) |
May
(352) |
Jun
(431) |
Jul
(463) |
Aug
(345) |
Sep
(304) |
Oct
(596) |
Nov
(466) |
Dec
(414) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(348) |
Feb
(313) |
Mar
(665) |
Apr
(688) |
May
(434) |
Jun
(311) |
Jul
(540) |
Aug
(554) |
Sep
(467) |
Oct
(341) |
Nov
(365) |
Dec
(272) |
| 2009 |
Jan
(386) |
Feb
(293) |
Mar
(279) |
Apr
(239) |
May
(229) |
Jun
(199) |
Jul
(186) |
Aug
(111) |
Sep
(196) |
Oct
(146) |
Nov
(116) |
Dec
(140) |
| 2010 |
Jan
(170) |
Feb
(159) |
Mar
(151) |
Apr
(161) |
May
(90) |
Jun
(56) |
Jul
(28) |
Aug
(22) |
Sep
(5) |
Oct
|
Nov
(23) |
Dec
(12) |
| 2011 |
Jan
(8) |
Feb
(8) |
Mar
(22) |
Apr
(24) |
May
(4) |
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2012 |
Jan
(5) |
Feb
(1) |
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <jt...@hy...> - 2007-03-15 21:01:24
|
Author: jtravis Date: 2007-03-15 13:01:20 -0800 (Thu, 15 Mar 2007) New Revision: 3772 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3772 Modified: branches/HQ_3_0/installer/data/db-upgrade.xml branches/HQ_3_0/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java Log: HHQ-751. Fix update status Modified: branches/HQ_3_0/installer/data/db-upgrade.xml =================================================================== --- branches/HQ_3_0/installer/data/db-upgrade.xml 2007-03-15 20:42:44 UTC (rev 3771) +++ branches/HQ_3_0/installer/data/db-upgrade.xml 2007-03-15 21:01:20 UTC (rev 3772) @@ -4932,7 +4932,12 @@ <schema-alterColumn table="EAM_ACTION" column="DELETED" nullable="NOT NULL"/> </schemaSpec> - + + <schemaSpec version="3.21"> + <schema-alterColumn table="EAM_UPDATE_STATUS" column="REPORT" + nullable="NULL"/> + </schemaSpec> + </dbupgrade> </target> Modified: branches/HQ_3_0/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java =================================================================== --- branches/HQ_3_0/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java 2007-03-15 20:42:44 UTC (rev 3771) +++ branches/HQ_3_0/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java 2007-03-15 21:01:20 UTC (rev 3772) @@ -213,7 +213,7 @@ response = post.getResponseBodyAsString(); } catch(Exception e) { - _log.warn("Unable to get updates", e); + _log.debug("Unable to get updates", e); return; } finally { post.releaseConnection(); @@ -231,6 +231,11 @@ return; } + if (statusCode != 200) { + _log.debug("Bad status code returned: " + statusCode); + return; + } + if (curStatus.getMode().equals(UpdateStatusMode.NONE)) return; |
|
From: Dan G. <dg...@hi...> - 2007-03-15 20:57:46
|
Were there any errors in the server.log when you couldn't log in? |
|
From: Jon T. (JIRA) <ji...@hy...> - 2007-03-15 20:53:40
|
[ http://jira.hyperic.com/browse/HHQ-751?page=all ] Jon Travis resolved HHQ-751: ---------------------------- Resolution: Fixed > Oracle upgrade fails for update status > -------------------------------------- > > Key: HHQ-751 > URL: http://jira.hyperic.com/browse/HHQ-751 > Project: Hyperic HQ > Type: Bug > Versions: 3.0.2 > Reporter: Jon Travis > Assignee: Jon Travis > Fix For: 3.0.3, 3.1.0 > > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: <jt...@hy...> - 2007-03-15 20:42:47
|
Author: jtravis Date: 2007-03-15 12:42:44 -0800 (Thu, 15 Mar 2007) New Revision: 3771 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3771 Modified: trunk/installer/data/db-upgrade.xml trunk/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java Log: HHQ-751. Fix update status Modified: trunk/installer/data/db-upgrade.xml =================================================================== --- trunk/installer/data/db-upgrade.xml 2007-03-15 17:52:50 UTC (rev 3770) +++ trunk/installer/data/db-upgrade.xml 2007-03-15 20:42:44 UTC (rev 3771) @@ -4932,7 +4932,12 @@ <schema-alterColumn table="EAM_ACTION" column="DELETED" nullable="NOT NULL"/> </schemaSpec> - + + <schemaSpec version="3.21"> + <schema-alterColumn table="EAM_UPDATE_STATUS" column="REPORT" + nullable="NULL"/> + </schemaSpec> + </dbupgrade> </target> Modified: trunk/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java =================================================================== --- trunk/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java 2007-03-15 17:52:50 UTC (rev 3770) +++ trunk/src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java 2007-03-15 20:42:44 UTC (rev 3771) @@ -213,7 +213,7 @@ response = post.getResponseBodyAsString(); } catch(Exception e) { - _log.warn("Unable to get updates", e); + _log.debug("Unable to get updates", e); return; } finally { post.releaseConnection(); @@ -231,6 +231,11 @@ return; } + if (statusCode != 200) { + _log.debug("Bad status code returned: " + statusCode); + return; + } + if (curStatus.getMode().equals(UpdateStatusMode.NONE)) return; |
|
From: Jon T. (JIRA) <ji...@hy...> - 2007-03-15 20:42:38
|
Oracle upgrade fails for update status
--------------------------------------
Key: HHQ-751
URL: http://jira.hyperic.com/browse/HHQ-751
Project: Hyperic HQ
Type: Bug
Versions: 3.0.2
Reporter: Jon Travis
Assigned to: Jon Travis
Fix For: 3.0.3, 3.1.0
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.hyperic.com/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|
|
From: <rm...@hy...> - 2007-03-15 17:52:54
|
Author: rmorgan Date: 2007-03-15 09:52:50 -0800 (Thu, 15 Mar 2007) New Revision: 3770 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3770 Modified: branches/HQ_3_0/etc/ehcache.xml branches/HQ_3_0/src/org/hyperic/hq/events/ext/RegisteredTriggers.java Log: Revert trigger cache back to using IntHashMap. [HQ-567] [merge from trunk] Modified: branches/HQ_3_0/etc/ehcache.xml =================================================================== --- branches/HQ_3_0/etc/ehcache.xml 2007-03-15 17:52:07 UTC (rev 3769) +++ branches/HQ_3_0/etc/ehcache.xml 2007-03-15 17:52:50 UTC (rev 3770) @@ -136,18 +136,6 @@ timeToLiveSeconds="0" memoryStoreEvictionPolicy="LRU"/> - <!-- Registered Trigger caches, used outside of hibernate --> - <cache name="TriggersByType" - maxElementsInMemory="10000" - timeToIdleSeconds="0" - timeToLiveSeconds="0" - memoryStoreEvictionPolicy="LRU"/> - <cache name="TriggerById" - maxElementsInMemory="10000" - timeToIdleSeconds="0" - timeToLiveSeconds="0" - memoryStoreEvictionPolicy="LRU"/> - <!-- Agent Caches --> <cache name="org.hyperic.hq.appdef.Agent" maxElementsInMemory="100" Modified: branches/HQ_3_0/src/org/hyperic/hq/events/ext/RegisteredTriggers.java =================================================================== --- branches/HQ_3_0/src/org/hyperic/hq/events/ext/RegisteredTriggers.java 2007-03-15 17:52:07 UTC (rev 3769) +++ branches/HQ_3_0/src/org/hyperic/hq/events/ext/RegisteredTriggers.java 2007-03-15 17:52:50 UTC (rev 3770) @@ -37,22 +37,21 @@ import java.util.Hashtable; import java.util.Iterator; import java.util.Map; -import java.util.HashMap; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.hyperic.hq.application.HQApp; import org.hyperic.hq.common.SystemException; import org.hyperic.hq.events.AbstractEvent; +import org.hyperic.hq.events.ActionExecuteException; +import org.hyperic.hq.events.EventTypeException; import org.hyperic.hq.events.InvalidTriggerDataException; import org.hyperic.hq.events.server.session.RegisteredTrigger; import org.hyperic.hq.events.server.session.TriggerChangeCallback; import org.hyperic.hq.events.shared.RegisteredTriggerManagerLocal; import org.hyperic.hq.events.shared.RegisteredTriggerManagerUtil; import org.hyperic.hq.events.shared.RegisteredTriggerValue; -import net.sf.ehcache.Cache; -import net.sf.ehcache.CacheManager; -import net.sf.ehcache.Element; +import org.hyperic.util.collection.IntHashMap; public class RegisteredTriggers { private final static Log log = @@ -61,16 +60,18 @@ public static final Integer KEY_ALL = new Integer(0); private static RegisteredTriggers singleton = new RegisteredTriggers(); - + + /** Holds value of property initialized. */ private boolean initialized = false; - - private Cache _keyedByType; - private Cache _keyedById; - + + /** Holds value of property keyedByType. */ + private Hashtable keyedByType = new Hashtable(); + + /** Holds value of property keyedByTrigger. */ + private Hashtable keyedByTrigger = new Hashtable(); + + /** Creates a new instance of RegisteredTriggers */ private RegisteredTriggers() { - _keyedByType = CacheManager.getInstance().getCache("TriggersByType"); - _keyedById = - CacheManager.getInstance().getCache("TriggerById"); } /** Initializes the cache. @@ -88,7 +89,7 @@ RegisteredTriggerManagerLocal rtm = RegisteredTriggerManagerUtil.getLocalHome().create(); - HashSet toRemove = new HashSet(_keyedById.getKeys()); + HashSet toRemove = new HashSet(this.keyedByTrigger.keySet()); Collection triggers = rtm.getAllTriggers(); for (Iterator i = triggers.iterator(); i.hasNext();) { @@ -145,26 +146,23 @@ Map triggers = new Hashtable(); // Look up by Event type - if (!_keyedByType.isKeyInCache(eventType)) { - if (create) { - Element el = new Element(eventType, new HashMap()); - _keyedByType.put(el); - } else { + if (!keyedByType.containsKey(eventType)) { + if (create) + keyedByType.put(eventType, new IntHashMap()); + else return triggers; - } } // Lookup by Instance - Element el = _keyedByType.get(eventType); - HashMap keyedByInstance = (HashMap)el.getObjectValue(); - if (!keyedByInstance.containsKey(instance)) { + IntHashMap keyedByInstance = (IntHashMap) keyedByType.get(eventType); + if (!keyedByInstance.containsKey(instance.intValue())) { if (create) - keyedByInstance.put(instance, triggers); + keyedByInstance.put(instance.intValue(), triggers); else return triggers; } - return (Map) keyedByInstance.get(instance); + return (Map) keyedByInstance.get(instance.intValue()); } public static Collection getInterestedTriggers(AbstractEvent event) { @@ -194,7 +192,7 @@ } public static boolean isTriggerInterested(AbstractEvent event) { - Map trigMap; + Map trigMap = null; // If the event happened more than a day ago, does anyone care? final long ONE_DAY = 86400000; @@ -219,7 +217,7 @@ } public static boolean isTriggerRegistered(Integer tid) { - return singleton.getKeyedById().isKeyInCache(tid); + return singleton.getKeyedByTrigger().containsKey(tid); } private void registerTrigger(RegisteredTriggerValue tv) @@ -256,12 +254,11 @@ } // Reverse register the trigger - if (!_keyedById.isKeyInCache(tv.getId())) { - Element el = new Element(tv.getId(), new ArrayList()); - _keyedById.put(el); + if (!keyedByTrigger.containsKey(tv.getId())) { + keyedByTrigger.put(tv.getId(), new ArrayList()); } - Element el = _keyedById.get(tv.getId()); - ArrayList triggerMaps = (ArrayList) el.getObjectValue(); + ArrayList triggerMaps = + (ArrayList) keyedByTrigger.get(tv.getId()); triggerMaps.add(triggers); } } @@ -269,11 +266,7 @@ private void unregisterTrigger(Integer tvId) { // Use the keyedByTrigger table to look up which maps to delete from - Element el = _keyedById.get(tvId); - if (el == null) // Can't unregister - return; - - ArrayList triggerMaps = (ArrayList)el.getObjectValue(); + ArrayList triggerMaps = (ArrayList) keyedByTrigger.remove(tvId); if (triggerMaps == null) // Can't unregister return; @@ -282,31 +275,39 @@ triggers.remove(tvId); } } - + + /** Getter for property initialized. + * @return Value of property initialized. + * + */ public boolean isInitialized() { return this.initialized; } - + + /** Setter for property initialized. + * @param initialized New value of property initialized. + * + */ public void setInitialized(boolean initialized) { this.initialized = initialized; } - + /** Getter for property keyedByType. * @return Value of property keyedByType. * */ - public Cache getKeyedByType() { - return _keyedByType; + public Hashtable getKeyedByType() { + return this.keyedByType; } - + /** Getter for property keyedByTrigger. * @return Value of property keyedByTrigger. * */ - public Cache getKeyedById() { - return _keyedById; + public Hashtable getKeyedByTrigger() { + return this.keyedByTrigger; } - + public class RegisteredTriggersUpdater implements TriggerChangeCallback { public void beforeTriggersDeleted(Collection triggers) { |
|
From: <rm...@hy...> - 2007-03-15 17:52:10
|
Author: rmorgan Date: 2007-03-15 09:52:07 -0800 (Thu, 15 Mar 2007) New Revision: 3769 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3769 Modified: trunk/etc/ehcache.xml trunk/src/org/hyperic/hq/events/ext/RegisteredTriggers.java Log: Revert trigger cache back to using IntHashMap. [HQ-567] Modified: trunk/etc/ehcache.xml =================================================================== --- trunk/etc/ehcache.xml 2007-03-15 12:32:35 UTC (rev 3768) +++ trunk/etc/ehcache.xml 2007-03-15 17:52:07 UTC (rev 3769) @@ -136,18 +136,6 @@ timeToLiveSeconds="0" memoryStoreEvictionPolicy="LRU"/> - <!-- Registered Trigger caches, used outside of hibernate --> - <cache name="TriggersByType" - maxElementsInMemory="10000" - timeToIdleSeconds="0" - timeToLiveSeconds="0" - memoryStoreEvictionPolicy="LRU"/> - <cache name="TriggerById" - maxElementsInMemory="10000" - timeToIdleSeconds="0" - timeToLiveSeconds="0" - memoryStoreEvictionPolicy="LRU"/> - <!-- Agent Caches --> <cache name="org.hyperic.hq.appdef.Agent" maxElementsInMemory="100" Modified: trunk/src/org/hyperic/hq/events/ext/RegisteredTriggers.java =================================================================== --- trunk/src/org/hyperic/hq/events/ext/RegisteredTriggers.java 2007-03-15 12:32:35 UTC (rev 3768) +++ trunk/src/org/hyperic/hq/events/ext/RegisteredTriggers.java 2007-03-15 17:52:07 UTC (rev 3769) @@ -37,22 +37,21 @@ import java.util.Hashtable; import java.util.Iterator; import java.util.Map; -import java.util.HashMap; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.hyperic.hq.application.HQApp; import org.hyperic.hq.common.SystemException; import org.hyperic.hq.events.AbstractEvent; +import org.hyperic.hq.events.ActionExecuteException; +import org.hyperic.hq.events.EventTypeException; import org.hyperic.hq.events.InvalidTriggerDataException; import org.hyperic.hq.events.server.session.RegisteredTrigger; import org.hyperic.hq.events.server.session.TriggerChangeCallback; import org.hyperic.hq.events.shared.RegisteredTriggerManagerLocal; import org.hyperic.hq.events.shared.RegisteredTriggerManagerUtil; import org.hyperic.hq.events.shared.RegisteredTriggerValue; -import net.sf.ehcache.Cache; -import net.sf.ehcache.CacheManager; -import net.sf.ehcache.Element; +import org.hyperic.util.collection.IntHashMap; public class RegisteredTriggers { private final static Log log = @@ -61,16 +60,18 @@ public static final Integer KEY_ALL = new Integer(0); private static RegisteredTriggers singleton = new RegisteredTriggers(); - + + /** Holds value of property initialized. */ private boolean initialized = false; - - private Cache _keyedByType; - private Cache _keyedById; - + + /** Holds value of property keyedByType. */ + private Hashtable keyedByType = new Hashtable(); + + /** Holds value of property keyedByTrigger. */ + private Hashtable keyedByTrigger = new Hashtable(); + + /** Creates a new instance of RegisteredTriggers */ private RegisteredTriggers() { - _keyedByType = CacheManager.getInstance().getCache("TriggersByType"); - _keyedById = - CacheManager.getInstance().getCache("TriggerById"); } /** Initializes the cache. @@ -88,7 +89,7 @@ RegisteredTriggerManagerLocal rtm = RegisteredTriggerManagerUtil.getLocalHome().create(); - HashSet toRemove = new HashSet(_keyedById.getKeys()); + HashSet toRemove = new HashSet(this.keyedByTrigger.keySet()); Collection triggers = rtm.getAllTriggers(); for (Iterator i = triggers.iterator(); i.hasNext();) { @@ -145,26 +146,23 @@ Map triggers = new Hashtable(); // Look up by Event type - if (!_keyedByType.isKeyInCache(eventType)) { - if (create) { - Element el = new Element(eventType, new HashMap()); - _keyedByType.put(el); - } else { + if (!keyedByType.containsKey(eventType)) { + if (create) + keyedByType.put(eventType, new IntHashMap()); + else return triggers; - } } // Lookup by Instance - Element el = _keyedByType.get(eventType); - HashMap keyedByInstance = (HashMap)el.getObjectValue(); - if (!keyedByInstance.containsKey(instance)) { + IntHashMap keyedByInstance = (IntHashMap) keyedByType.get(eventType); + if (!keyedByInstance.containsKey(instance.intValue())) { if (create) - keyedByInstance.put(instance, triggers); + keyedByInstance.put(instance.intValue(), triggers); else return triggers; } - return (Map) keyedByInstance.get(instance); + return (Map) keyedByInstance.get(instance.intValue()); } public static Collection getInterestedTriggers(AbstractEvent event) { @@ -194,7 +192,7 @@ } public static boolean isTriggerInterested(AbstractEvent event) { - Map trigMap; + Map trigMap = null; // If the event happened more than a day ago, does anyone care? final long ONE_DAY = 86400000; @@ -219,7 +217,7 @@ } public static boolean isTriggerRegistered(Integer tid) { - return singleton.getKeyedById().isKeyInCache(tid); + return singleton.getKeyedByTrigger().containsKey(tid); } private void registerTrigger(RegisteredTriggerValue tv) @@ -256,12 +254,11 @@ } // Reverse register the trigger - if (!_keyedById.isKeyInCache(tv.getId())) { - Element el = new Element(tv.getId(), new ArrayList()); - _keyedById.put(el); + if (!keyedByTrigger.containsKey(tv.getId())) { + keyedByTrigger.put(tv.getId(), new ArrayList()); } - Element el = _keyedById.get(tv.getId()); - ArrayList triggerMaps = (ArrayList) el.getObjectValue(); + ArrayList triggerMaps = + (ArrayList) keyedByTrigger.get(tv.getId()); triggerMaps.add(triggers); } } @@ -269,11 +266,7 @@ private void unregisterTrigger(Integer tvId) { // Use the keyedByTrigger table to look up which maps to delete from - Element el = _keyedById.get(tvId); - if (el == null) // Can't unregister - return; - - ArrayList triggerMaps = (ArrayList)el.getObjectValue(); + ArrayList triggerMaps = (ArrayList) keyedByTrigger.remove(tvId); if (triggerMaps == null) // Can't unregister return; @@ -282,31 +275,39 @@ triggers.remove(tvId); } } - + + /** Getter for property initialized. + * @return Value of property initialized. + * + */ public boolean isInitialized() { return this.initialized; } - + + /** Setter for property initialized. + * @param initialized New value of property initialized. + * + */ public void setInitialized(boolean initialized) { this.initialized = initialized; } - + /** Getter for property keyedByType. * @return Value of property keyedByType. * */ - public Cache getKeyedByType() { - return _keyedByType; + public Hashtable getKeyedByType() { + return this.keyedByType; } - + /** Getter for property keyedByTrigger. * @return Value of property keyedByTrigger. * */ - public Cache getKeyedById() { - return _keyedById; + public Hashtable getKeyedByTrigger() { + return this.keyedByTrigger; } - + public class RegisteredTriggersUpdater implements TriggerChangeCallback { public void beforeTriggersDeleted(Collection triggers) { |
|
From: Bob C. <Rob...@in...> - 2007-03-15 17:51:54
|
Hi, Our JBoss is auto-discovered without entering anything. What do we have to do to our JMX programs so they will be auto-discovered, similar to JBoss, so we do not have to enter anything? Thanks Bob |
|
From: Bob C. <Rob...@in...> - 2007-03-15 17:46:42
|
Yes, that was the problem. When the service is auto-discovered, the properties display fine. That brings up two more points. 1) It seems like manual creation of a service SHOULD support properties. This seems like a bug to me. 2) What are the advantages of manual creation over auto-discovery? |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-15 16:40:40
|
[ http://jira.hyperic.com/browse/HHQ-646?page=all ] Noah Salzman closed HHQ-646: ---------------------------- Resolution: Fixed Whoops. Actually click Close this time. > Action logs unsorted > -------------------- > > Key: HHQ-646 > URL: http://jira.hyperic.com/browse/HHQ-646 > Project: Hyperic HQ > Type: Bug > Components: Alerts > Versions: 3.0.1 > Reporter: Jon Travis > Assignee: Charles Lee > Fix For: 3.0.2 > > > Action logs are unsorted and contain no timestamps in the detailed alert page. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: <ale...@pc...> - 2007-03-15 14:25:17
|
Didn't work. I made the case a little simpler but the problem remains. if i invoke cl_test ( ELF )with the params the output is "sucess=..." and "time=...". The files called by the plugin is defintly the right one. I added the used Plugin. if I invoke the plugin: java -jar pdk/lib/hq-product.jar -Dplugins.include=direct_connect_extd -Dlog=debug the output is: drssm102:/home/hyperic/agent-2.7.6-EE# java -jar pdk/lib/hq-product.jar -Dplugin [DEBUG] ProductPluginManager - Initializing in client mode (pdk=/home/hyperic/ag [DEBUG] MIBTree - No MIBs in directory: /home/hyperic/agent-2.7.6-EE/pdk/mibs [INFO] ProductPluginManager - Loading plugin: system-plugin.jar [INFO] ProductPluginManager - Loading plugin: netservices-plugin.jar [INFO] MeasurementPlugin - Register TCP Socket proxy for domain: socket [INFO] MeasurementPlugin - Register HTTP proxy for domain: http [INFO] MeasurementPlugin - Register HTTP proxy for domain: url.availability [INFO] MeasurementPlugin - Register FTP proxy for domain: ftp [INFO] ProductPluginManager - Loading plugin: sqlquery-plugin.jar [DEBUG] ProductPluginManager - adding to sqlquery classpath: [DEBUG] ProductPluginManager - d /home/hyperic/agent-2.7.6-EE/pdk/lib/jdbc [INFO] SQLQueryMeasurementPlugin - Registered proxy for domain: sql [DEBUG] ProductPluginManager - Skipping activemq (not in plugins.include) [DEBUG] ProductPluginManager - Skipping adwords (not in plugins.include) [DEBUG] ProductPluginManager - Skipping apache (not in plugins.include) [DEBUG] ProductPluginManager - Skipping bind (not in plugins.include) [DEBUG] ProductPluginManager - Skipping db2 (not in plugins.include) [DEBUG] ProductPluginManager - Skipping dotnet (not in plugins.include) [DEBUG] ProductPluginManager - Skipping exchange (not in plugins.include) [DEBUG] ProductPluginManager - Skipping geronimo (not in plugins.include) [DEBUG] ProductPluginManager - Skipping hqagent (not in plugins.include) [DEBUG] ProductPluginManager - Skipping iis (not in plugins.include) [DEBUG] ProductPluginManager - Skipping iplanet (not in plugins.include) [DEBUG] ProductPluginManager - Skipping jboss (not in plugins.include) [DEBUG] ProductPluginManager - Skipping jmx (not in plugins.include) [DEBUG] ProductPluginManager - Skipping memcached (not in plugins.include) [DEBUG] ProductPluginManager - Skipping metaframe (not in plugins.include) [DEBUG] ProductPluginManager - Skipping mqseries (not in plugins.include) [DEBUG] ProductPluginManager - Skipping mssql (not in plugins.include) [DEBUG] ProductPluginManager - Skipping mule (not in plugins.include) [DEBUG] ProductPluginManager - Skipping mysql (not in plugins.include) [DEBUG] ProductPluginManager - Skipping nagios (not in plugins.include) [DEBUG] ProductPluginManager - Skipping netdevice (not in plugins.include) [DEBUG] ProductPluginManager - Skipping ntds (not in plugins.include) [DEBUG] ProductPluginManager - Skipping ntp (not in plugins.include) [DEBUG] ProductPluginManager - Skipping oracle (not in plugins.include) [DEBUG] ProductPluginManager - Skipping postfix (not in plugins.include) [DEBUG] ProductPluginManager - Skipping postgresql (not in plugins.include) [DEBUG] ProductPluginManager - process-metrics.xml not a loadable plugin [DEBUG] ProductPluginManager - Skipping resin (not in plugins.include) [DEBUG] ProductPluginManager - Skipping servlet (not in plugins.include) [DEBUG] ProductPluginManager - Skipping silverstream (not in plugins.include) [DEBUG] ProductPluginManager - sun-jvm-service.xml not a loadable plugin [DEBUG] ProductPluginManager - Skipping sybase (not in plugins.include) [DEBUG] ProductPluginManager - Skipping vmware (not in plugins.include) [DEBUG] ProductPluginManager - Skipping weblogic (not in plugins.include) [DEBUG] ProductPluginManager - Skipping websphere (not in plugins.include) [DEBUG] ProductPluginManager - direct_connect_extd-plugin.xml~ not a loadable pl [DEBUG] ProductPluginManager - Skipping io-device (not in plugins.include) [INFO] ProductPluginManager - Loading plugin: direct_connect_extd-plugin.xml [DEBUG] ControlPluginManager - PluginNotFound creating plugin for service '*+DIR *+DIRECT_CONNECT+* Availability pcvisit 4: *+DIRECT_CONNECT+*:exec:file=/root/cl_test,args=--ConnectionSettings "nxuc1ny Establishment 0:sucess [DEBUG] Collector - Adding exec collector: [/root/cl_test, --ConnectionSettings, tablishment, 0] [INFO] CollectorThread - CollectorThread started [DEBUG] Collector - Running exec collectors [DEBUG] ExecutableProcess - running: [/root/cl_test, --ConnectionSettings, nxuc shment, 0] [DEBUG] Execute - Done exit=137 /root/cl_test --ConnectionSettings nxuc1nyuv733c [ERROR] ExecutableProcess - No message, exit value=137 [DEBUG] Collector - Thu Mar 15 14:59:14 CET 2007 [Error] (/root/cl_test) No mess , ResponseCode=137.0} [DEBUG] CollectorResult - Attribute ''sucess" not found drssm102:/home/hyperic/agent-2.7.6-EE# Permissions are set to a+a for the cl_test-executable. What could be the reason ? |
|
From: <bo...@hy...> - 2007-03-15 12:32:39
|
Author: bob Date: 2007-03-15 04:32:35 -0800 (Thu, 15 Mar 2007) New Revision: 3768 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3768 Modified: trunk/etc/version.properties Log: Release 3.1.0 build #341 Modified: trunk/etc/version.properties =================================================================== --- trunk/etc/version.properties 2007-03-15 11:35:36 UTC (rev 3767) +++ trunk/etc/version.properties 2007-03-15 12:32:35 UTC (rev 3768) @@ -1,3 +1,3 @@ -#Wed Mar 14 15:24:43 PDT 2007 +#Thu Mar 15 04:56:11 PDT 2007 version=3.1.0 -build=340 +build=341 |
|
From: <bo...@hy...> - 2007-03-15 11:35:41
|
Author: bob Date: 2007-03-15 03:35:36 -0800 (Thu, 15 Mar 2007) New Revision: 3767 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3767 Modified: branches/HQ_3_0/etc/version.properties Log: Release 3.0.3 build #341 Modified: branches/HQ_3_0/etc/version.properties =================================================================== --- branches/HQ_3_0/etc/version.properties 2007-03-14 23:05:31 UTC (rev 3766) +++ branches/HQ_3_0/etc/version.properties 2007-03-15 11:35:36 UTC (rev 3767) @@ -1,3 +1,3 @@ -#Wed Mar 14 14:41:47 PDT 2007 +#Thu Mar 15 04:07:14 PDT 2007 version=3.0.3 -build=340 +build=341 |
|
From: Roman G. <rom...@tr...> - 2007-03-15 08:12:49
|
Thank You My probleme was, that I only changed the indicator column in the template to on. Now it works fine. Best regards Roman |
|
From: Murray B. <hq-...@hy...> - 2007-03-15 03:01:44
|
Charles, For my purposes the shell would be a perfectly good way to do it. Currently you have "alertdef list", "alertdef add" and "alertdef delete". What I need is "alertdef modify" with the ability to enable/disable the alert. So then when I'm stopping the resource I disable the alert(s) and when I restart it I enable the alert. On the same subject I have looked at the doco at http://support.hyperic.com/confluence/display/DOCSHQ30/Alertdef+CLI+Command. Is it possible to do the add via a single command or is it only available via the dialogue? If there is a single line command then I could delete the alert and add it again. (Crude but I guess it would work.) Thanks . . . Murray |
|
From: Nipuna B. (JIRA) <ji...@hy...> - 2007-03-15 00:21:35
|
[ http://jira.hyperic.com/browse/HHQ-723?page=all ] Nipuna Bhayani closed HHQ-723: ------------------------------ Works fine in Release 3.0.2 build #338 Fixed button works fine in both IE and firefox > Fixing galerts from recent alerts portlet or list alerts page causes stacktrace > ------------------------------------------------------------------------------- > > Key: HHQ-723 > URL: http://jira.hyperic.com/browse/HHQ-723 > Project: Hyperic HQ > Type: Bug > Components: Dashboard > Versions: 3.0.2 > Environment: Sever: 3.0.2 .EE build 313. Platform: Windows XP SP2 ,IE 7 > Reporter: Nipuna Bhayani > Assignee: Jon Travis > Fix For: 3.0.2 > > > Create a Alert with Escalation > Acknowledge the Alert > Go to the Dasboard > Select the Acknowledge Alert > Actual results: > Fixed button is still disabled in IE,works fine in Firefox -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Nipuna B. (JIRA) <ji...@hy...> - 2007-03-15 00:14:39
|
[ http://jira.hyperic.com/browse/HHQ-179?page=all ] Nipuna Bhayani closed HHQ-179: ------------------------------ works fine in Release 3.0.2 build #338 Able to create alertdef from CLI > alertdef creation not working from the shell > -------------------------------------------- > > Key: HHQ-179 > URL: http://jira.hyperic.com/browse/HHQ-179 > Project: Hyperic HQ > Type: Bug > Components: CLI > Versions: 2.7.2, 2.7.4 > Environment: 2.7.2 and 2.7.4-113 on Linux > Reporter: John Sachs > Assignee: Charles Lee > Fix For: 2.7.4 > > > I am not able to create an alertdef in the shell. > [ Configure Email Actions ] > Recipient Type ([1] Emails [2] Users [3] Roles) [default '1']: 1 > Recipients (comma-delimited Emails or ID's) [default '']: te...@al... > Error finding resource: No such entity! > No matter what I put at the end, thats the error I get. I've tried all three types of recipients and nothing seems to work. This failure causes the alertdef not to be created. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Noah S. <noa...@hy...> - 2007-03-14 23:56:17
|
I don't suppose you could upgrade to 3.0.2 (just released today) and try again? That is, the behavior you describe is not supposed to happen in 3.0.0 or 3.0.1. However, it always makes troubleshooting easier if you are on the most recent release. |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-14 23:50:41
|
[ http://jira.hyperic.com/browse/HHQ-399?page=all ] Noah Salzman closed HHQ-399: ---------------------------- Bug as written is fixed, however you can still enter strings that are not RFC822 proper addresses (I may open a diff bug). Closing. > Alert email list parser gets confused by certain characters, caues infinite loop > -------------------------------------------------------------------------------- > > Key: HHQ-399 > URL: http://jira.hyperic.com/browse/HHQ-399 > Project: Hyperic HQ > Type: Developer > Components: UI > Versions: 3.0.0 > Environment: Server: .org build 209 on Linux > Reporter: Noah Salzman > Assignee: Heather Tumey > Priority: Minor > Fix For: 3.0.0 > > > When configuring an alert to notify multiple email recipients you get an interesting result if you insert one of these characters into the field and click OK -> & ; : ( ) < > [ ] > Steps: > 1. Edit an Alert > 2. Click the "Notify other recipients" tab > 3. Enter in one of the forbidden chars -> & ; : ( ) < > [ ] > 4. Click OK > Result: > The Hyperic UI header is redrawn down the screen over and over. > Note: I originally ran into this by accidentally using semi-colons to separate my mail list instead of commas. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-14 23:50:40
|
[ http://jira.hyperic.com/browse/HHQ-399?page=all ] Noah Salzman updated HHQ-399: ----------------------------- Fix Version: 3.0.0 Code change went into 3.0.0. > Alert email list parser gets confused by certain characters, caues infinite loop > -------------------------------------------------------------------------------- > > Key: HHQ-399 > URL: http://jira.hyperic.com/browse/HHQ-399 > Project: Hyperic HQ > Type: Developer > Components: UI > Versions: 3.0.0 > Environment: Server: .org build 209 on Linux > Reporter: Noah Salzman > Assignee: Heather Tumey > Priority: Minor > Fix For: 3.0.0 > > > When configuring an alert to notify multiple email recipients you get an interesting result if you insert one of these characters into the field and click OK -> & ; : ( ) < > [ ] > Steps: > 1. Edit an Alert > 2. Click the "Notify other recipients" tab > 3. Enter in one of the forbidden chars -> & ; : ( ) < > [ ] > 4. Click OK > Result: > The Hyperic UI header is redrawn down the screen over and over. > Note: I originally ran into this by accidentally using semi-colons to separate my mail list instead of commas. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-14 23:39:38
|
[ http://jira.hyperic.com/browse/HHQ-413?page=all ] Noah Salzman closed HHQ-413: ---------------------------- Not fixed, per se, but the new help/info text makes things better. Closing. > Alert Escalation: there should always be at least one action for an escalation > ------------------------------------------------------------------------------ > > Key: HHQ-413 > URL: http://jira.hyperic.com/browse/HHQ-413 > Project: Hyperic HQ > Type: Developer > Versions: 3.0.0 > Environment: Server: 3.0 .org buld 220. Browser: Firefox 2.0.0.1 > Reporter: Noah Salzman > Assignee: Heather Tumey > Priority: Minor > Attachments: escalation_with_no_criteria.png > > > When creating an escalation users are allowed to click "Delete" when there is just one criteria set. This leaves you with no criteria and an Add To List button. Assuming a criteria-less escalation is not valid the user should not be able to do this. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-14 23:36:35
|
[ http://jira.hyperic.com/browse/HHQ-450?page=all ] Noah Salzman updated HHQ-450: ----------------------------- Fix Version: 3.0.3 This single forum post is probably indicative of dozens of people who run into this. http://forums.hyperic.com/jiveforums/thread.jspa?threadID=1610&tstart=0 It shouldn't be that hard to do a quick check, kick an error on failure, and exit. Targeting to 3.0.3. > hq-server.exe should fail with a useful error if the database isn't found > ------------------------------------------------------------------------- > > Key: HHQ-450 > URL: http://jira.hyperic.com/browse/HHQ-450 > Project: Hyperic HQ > Type: Developer > Versions: 3.0.0, 2.7.6 > Reporter: Noah Salzman > Assignee: Charles Lee > Priority: Minor > Fix For: 3.0.3 > > > It is very confusing to a new user of Hyperic that hq-server.exe (if not yet installed as a service) will happily try to start up if the database isn't running. > In the spirit of making HQ as painless as possible to get started with we should have hq-server.exe error politely and exit if there is no database running. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-14 23:31:47
|
[ http://jira.hyperic.com/browse/HHQ-451?page=all ] Noah Salzman closed HHQ-451: ---------------------------- Closed. > "Reindex Metric Data Tables Nightly" buttons in wrong spot in IE > ---------------------------------------------------------------- > > Key: HHQ-451 > URL: http://jira.hyperic.com/browse/HHQ-451 > Project: Hyperic HQ > Type: Developer > Components: UI > Versions: 3.0.0 > Environment: Server: .org build 236 > Reporter: Noah Salzman > Assignee: Heather Tumey > Priority: Trivial > Fix For: 3.0.0 > Attachments: admin_config_ie.jpg > > > In the Admin config page the Yes/No buttons for "Reindex Metric Data Tables Nightly" are in the wrong spot in IE. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: Noah S. (JIRA) <ji...@hy...> - 2007-03-14 23:31:47
|
[ http://jira.hyperic.com/browse/HHQ-451?page=all ] Noah Salzman updated HHQ-451: ----------------------------- Fix Version: 3.0.0 This was fixed in 3.0.0. > "Reindex Metric Data Tables Nightly" buttons in wrong spot in IE > ---------------------------------------------------------------- > > Key: HHQ-451 > URL: http://jira.hyperic.com/browse/HHQ-451 > Project: Hyperic HQ > Type: Developer > Components: UI > Versions: 3.0.0 > Environment: Server: .org build 236 > Reporter: Noah Salzman > Assignee: Heather Tumey > Priority: Trivial > Fix For: 3.0.0 > Attachments: admin_config_ie.jpg > > > In the Admin config page the Yes/No buttons for "Reindex Metric Data Tables Nightly" are in the wrong spot in IE. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.hyperic.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
From: <hy...@us...> - 2007-03-14 23:29:47
|
Revision: 8
http://hyperic-hq.svn.sourceforge.net/hyperic-hq/?rev=8&view=rev
Author: hyperic
Date: 2007-03-14 16:29:43 -0700 (Wed, 14 Mar 2007)
Log Message:
-----------
first trunk commit for upcoming 3.1
Modified Paths:
--------------
build.xml
etc/build.properties
etc/ehcache.xml
etc/version.properties
installer/data/db-upgrade.xml
sql/events/Action.hq-xml
src/org/hyperic/hq/appdef/server/session/AppdefManagerEJBImpl.java
src/org/hyperic/hq/appdef/server/session/ServiceManagerEJBImpl.java
src/org/hyperic/hq/bizapp/server/session/UpdateBossEJBImpl.java
src/org/hyperic/hq/common/DiagnosticThread.java
src/org/hyperic/hq/common/server/session/ServerConfigManagerEJBImpl.java
src/org/hyperic/hq/control/server/session/ControlScheduleManagerEJBImpl.java
src/org/hyperic/hq/escalation/server/session/EscalationManagerEJBImpl.java
src/org/hyperic/hq/events/ext/RegisteredTriggers.java
src/org/hyperic/hq/events/server/session/Action.java
src/org/hyperic/hq/events/server/session/ActionManagerEJBImpl.java
src/org/hyperic/hq/ha/server/mbean/HAService.java
src/org/hyperic/hq/ha/server/session/HAStartupListener.java
src/org/hyperic/hq/measurement/server/session/DataManagerEJBImpl.java
src/org/hyperic/hq/measurement/server/session/DataPoint.java
src/org/hyperic/hq/ui/ServiceLocator.java
src/org/hyperic/hq/ui/action/admin/config/EditConfigAction.java
src/org/hyperic/hq/ui/action/admin/config/EditConfigPrepAction.java
src/org/hyperic/hq/ui/action/admin/config/SystemConfigForm.java
src/org/hyperic/hq/ui/action/portlet/DisplayDashboardAction.java
src/org/hyperic/hq/ui/action/portlet/autoDisc/ViewAction.java
src/org/hyperic/hq/ui/action/resource/platform/autodiscovery/EditAutoDiscoveryAction.java
src/org/hyperic/hq/ui/action/resource/platform/autodiscovery/EditAutoDiscoveryPrepAction.java
src/org/hyperic/hq/ui/action/resource/platform/autodiscovery/NewAutoDiscoveryAction.java
src/org/hyperic/hq/ui/action/resource/platform/autodiscovery/PlatformAutoDiscoveryForm.java
src/org/hyperic/hq/ui/util/ContextUtils.java
web/WEB-INF/classes/ApplicationResources.properties
web/admin/config/EditServerConfigForm.jsp
web/common/Header.jsp
web/js/requests.js
web/portal/DashboardLayout.jsp
web/resource/platform/autodiscovery/NewAutoDiscovery.jsp
Added Paths:
-----------
etc/tweak.properties
src/org/hyperic/hq/common/server/session/GUIDGenerator.java
web/images/transmit.gif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|