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: <bo...@hy...> - 2009-11-19 07:28:15
|
Author: bob Date: 2009-11-18 23:28:00 -0800 (Wed, 18 Nov 2009) New Revision: 13963 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13963 Modified: branches/HQ_4_2_0_PATCH/etc/version.properties Log: Release 4.2.0 build #1261 Modified: branches/HQ_4_2_0_PATCH/etc/version.properties =================================================================== --- branches/HQ_4_2_0_PATCH/etc/version.properties 2009-11-19 02:36:46 UTC (rev 13962) +++ branches/HQ_4_2_0_PATCH/etc/version.properties 2009-11-19 07:28:00 UTC (rev 13963) @@ -1,3 +1,3 @@ -#Fri Oct 30 12:14:25 PDT 2009 +#Wed Nov 18 22:58:10 PST 2009 version=4.2.0 -build=1260 +build=1261 |
From: <no...@gi...> - 2009-11-19 02:54:12
|
Branch: refs/heads/hqapi-1.0 Home: http://github.com/hyperic/hqapi Commit: b950ccb4f0b32fac87d382a97f35a1c4ad243542 http://github.com/hyperic/hqapi/commit/b950ccb4f0b32fac87d382a97f35a1c4ad243542 Author: pnguyen <pnguyen@192.168.1.66> Date: 2009-11-18 (Wed, 18 Nov 2009) Changed paths: M hqu/hqapi1/app/ApplicationController.groovy Log Message: ----------- [HHQ-3513] To improve performance, use the resourceId (new) and description from the ServiceValue object if available. |
From: <pn...@hy...> - 2009-11-19 02:37:00
|
Author: pnguyen Date: 2009-11-18 18:36:46 -0800 (Wed, 18 Nov 2009) New Revision: 13962 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13962 Modified: branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/server/session/Service.java branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/shared/ServiceValue.java Log: [HHQ-3513] Added resourceId to ServiceValue so HQApi does not need to do an additional lookup Modified: branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/server/session/Service.java =================================================================== --- branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/server/session/Service.java 2009-11-18 20:33:10 UTC (rev 13961) +++ branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/server/session/Service.java 2009-11-19 02:36:46 UTC (rev 13962) @@ -178,6 +178,8 @@ _serviceValue.setName(getName()); _serviceValue.setDescription(getDescription()); _serviceValue.setId(getId()); + _serviceValue.setResourceId(getResource() != null ? + getResource().getId() : null); _serviceValue.setMTime(getMTime()); _serviceValue.setCTime(getCTime()); if (getServer() != null) { Modified: branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/shared/ServiceValue.java =================================================================== --- branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/shared/ServiceValue.java 2009-11-18 20:33:10 UTC (rev 13961) +++ branches/HQ_4_2_0_PATCH/src/org/hyperic/hq/appdef/shared/ServiceValue.java 2009-11-19 02:36:46 UTC (rev 13962) @@ -62,6 +62,8 @@ private boolean descriptionHasBeenSet = false; private Integer id; private boolean idHasBeenSet = false; + private Integer resourceId; + private boolean resourceIdHasBeenSet = false; private Long mTime; private boolean mTimeHasBeenSet = false; private Long cTime; @@ -131,6 +133,8 @@ configResponseIdHasBeenSet = true; this.parentId = otherValue.parentId; parentIdHasBeenSet = true; + this.resourceId = otherValue.resourceId; + resourceIdHasBeenSet = true; this.name = otherValue.name; nameHasBeenSet = true; this.description = otherValue.description; @@ -287,6 +291,20 @@ public boolean parentIdHasBeenSet(){ return parentIdHasBeenSet; } + + public Integer getResourceId() { + return this.resourceId; + } + + public void setResourceId(Integer resourceId) { + this.resourceId = resourceId; + resourceIdHasBeenSet = true; + } + + public boolean resourceIdHasBeenSet() { + return resourceIdHasBeenSet; + } + public String getName() { return this.name; |
From: <no...@gi...> - 2009-11-18 23:37:00
|
Branch: refs/heads/evolution Home: http://github.com/hyperic/hqapi Commit: 5447c1bbc99398600676d24dce90b298506946fb http://github.com/hyperic/hqapi/commit/5447c1bbc99398600676d24dce90b298506946fb Author: Jennifer Hickey <jen...@sp...> Date: 2009-11-18 (Wed, 18 Nov 2009) Changed paths: M hqu/hqapi1/app/ServerconfigController.groovy Log Message: ----------- HE-209 Converted ServerConfigManagerEJB |
From: <kp...@hy...> - 2009-11-18 20:33:24
|
Author: kparikh Date: 2009-11-18 12:33:10 -0800 (Wed, 18 Nov 2009) New Revision: 13961 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13961 Added: branches/HQ_4_2_0_PATCH/ Log: Creating 4.2.0 Patch branch Copied: branches/HQ_4_2_0_PATCH (from rev 13933, tags/HQ_4_2_0_GA) |
From: <dcr...@hy...> - 2009-11-18 20:21:28
|
Author: dcrutchf Date: 2009-11-18 12:21:17 -0800 (Wed, 18 Nov 2009) New Revision: 13960 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13960 Modified: branches/HQ_4_2/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java branches/HQ_4_2/web/WEB-INF/classes/ApplicationResources.properties Log: [HHQ-3460] - Control tab not displayed for Platform types Modified: branches/HQ_4_2/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java =================================================================== --- branches/HQ_4_2/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java 2009-11-18 18:46:32 UTC (rev 13959) +++ branches/HQ_4_2/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java 2009-11-18 20:21:17 UTC (rev 13960) @@ -200,7 +200,7 @@ } else { if ( i == ProductPlugin.CFGTYPE_IDX_RESPONSE_TIME ) { - if ( aeid.isServer() ) { + if (aeid.isServer() || aeid.isPlatform()) { // On servers, RT always gets an empty config allConfigs.setConfig(i, new ConfigResponse()); allConfigs.setShouldConfig(i, true); @@ -215,8 +215,8 @@ } } if ( i == ProductPlugin.CFGTYPE_IDX_CONTROL - && !aeid.isService() && !aeid.isServer() ) { - // Control is only supported on servers and services + && !aeid.isService() && !aeid.isServer() && !aeid.isPlatform() ) { + // Control is only supported on platforms, servers and services blankoutConfig(i, allConfigs, allConfigsRollback); continue; } Modified: branches/HQ_4_2/web/WEB-INF/classes/ApplicationResources.properties =================================================================== --- branches/HQ_4_2/web/WEB-INF/classes/ApplicationResources.properties 2009-11-18 18:46:32 UTC (rev 13959) +++ branches/HQ_4_2/web/WEB-INF/classes/ApplicationResources.properties 2009-11-18 20:21:17 UTC (rev 13960) @@ -659,6 +659,8 @@ admin.settings.SNMPGenericID=Generic ID: admin.settings.SNMPSpecificID=Specific ID: admin.settings.SNMPAgentAddress=Agent Address: +admin.settings.SNMPNotificationMechanism=Notification Mechanism: +admin.settings.SNMPDefaultNotificationMechanism=Default Notification Mechanism: admin.settings.UseLDAPAuth=Use LDAP Authentication @@ -1313,6 +1315,7 @@ resource.group.ControlHistory.ListContent.Start=Start resource.group.ControlHistory.ListContent.Stop=Stop +resource.platform.ControlStatus.Tab=Current Status resource.server.ControlStatus.Tab=Current Status resource.service.ControlStatus.Tab=Current Status resource.group.ControlStatus.Tab=Current Status @@ -2024,6 +2027,7 @@ alert.config.edit.snmp.address=Address of the target SNMP engine: alert.config.edit.snmp.oid=OID: +alert.config.edit.snmp.notificationMechanism=Notification Mechanism: alert.config.edit.opennms.server=Server: alert.config.edit.opennms.ip=IP (optional): @@ -2041,7 +2045,7 @@ monitoring.events.MiniTabs.Roles=Notify Roles monitoring.events.MiniTabs.Users=Notify HQ Users monitoring.events.MiniTabs.Others=Notify Other Recipients -monitoring.events.MiniTabs.SNMP=SNMP Trap +monitoring.events.MiniTabs.SNMP=SNMP Notification monitoring.events.MiniTabs.Escalation=Escalation monitoring.events.MiniTabs.Script=Script monitoring.events.MiniTabs.OpenNMS=OpenNMS |
From: <dcr...@hy...> - 2009-11-18 18:46:48
|
Author: dcrutchf Date: 2009-11-18 10:46:32 -0800 (Wed, 18 Nov 2009) New Revision: 13959 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13959 Modified: trunk/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java trunk/web/WEB-INF/classes/ApplicationResources.properties Log: [HHQ-3460] - Control tab not displayed for Platform types Modified: trunk/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java =================================================================== --- trunk/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java 2009-11-18 18:12:06 UTC (rev 13958) +++ trunk/src/org/hyperic/hq/ui/action/resource/common/inventory/EditConfigPropertiesAction.java 2009-11-18 18:46:32 UTC (rev 13959) @@ -200,7 +200,7 @@ } else { if ( i == ProductPlugin.CFGTYPE_IDX_RESPONSE_TIME ) { - if ( aeid.isServer() ) { + if (aeid.isServer() || aeid.isPlatform()) { // On servers, RT always gets an empty config allConfigs.setConfig(i, new ConfigResponse()); allConfigs.setShouldConfig(i, true); @@ -215,8 +215,8 @@ } } if ( i == ProductPlugin.CFGTYPE_IDX_CONTROL - && !aeid.isService() && !aeid.isServer() ) { - // Control is only supported on servers and services + && !aeid.isService() && !aeid.isServer() && !aeid.isPlatform() ) { + // Control is only supported on platforms, servers and services blankoutConfig(i, allConfigs, allConfigsRollback); continue; } Modified: trunk/web/WEB-INF/classes/ApplicationResources.properties =================================================================== --- trunk/web/WEB-INF/classes/ApplicationResources.properties 2009-11-18 18:12:06 UTC (rev 13958) +++ trunk/web/WEB-INF/classes/ApplicationResources.properties 2009-11-18 18:46:32 UTC (rev 13959) @@ -659,6 +659,8 @@ admin.settings.SNMPGenericID=Generic ID: admin.settings.SNMPSpecificID=Specific ID: admin.settings.SNMPAgentAddress=Agent Address: +admin.settings.SNMPNotificationMechanism=Notification Mechanism: +admin.settings.SNMPDefaultNotificationMechanism=Default Notification Mechanism: admin.settings.UseLDAPAuth=Use LDAP Authentication @@ -1313,6 +1315,7 @@ resource.group.ControlHistory.ListContent.Start=Start resource.group.ControlHistory.ListContent.Stop=Stop +resource.platform.ControlStatus.Tab=Current Status resource.server.ControlStatus.Tab=Current Status resource.service.ControlStatus.Tab=Current Status resource.group.ControlStatus.Tab=Current Status @@ -2024,6 +2027,7 @@ alert.config.edit.snmp.address=Address of the target SNMP engine: alert.config.edit.snmp.oid=OID: +alert.config.edit.snmp.notificationMechanism=Notification Mechanism: alert.config.edit.opennms.server=Server: alert.config.edit.opennms.ip=IP (optional): @@ -2041,7 +2045,7 @@ monitoring.events.MiniTabs.Roles=Notify Roles monitoring.events.MiniTabs.Users=Notify HQ Users monitoring.events.MiniTabs.Others=Notify Other Recipients -monitoring.events.MiniTabs.SNMP=SNMP Trap +monitoring.events.MiniTabs.SNMP=SNMP Notification monitoring.events.MiniTabs.Escalation=Escalation monitoring.events.MiniTabs.Script=Script monitoring.events.MiniTabs.OpenNMS=OpenNMS |
From: lirl98 <li...@12...> - 2009-11-18 18:15:58
|
For the .dll file, where should it be? (class_path ? Or just the same folder with the sigar.jar?) I have make a eclipse project and just place it on the same folder of the sigar.jar, and it runs well. But I'm not sure where the dll should be when I do an actual depolyment. Thanks for any reply~ |
From: <bo...@hy...> - 2009-11-18 11:11:25
|
Author: bob Date: 2009-11-18 03:11:10 -0800 (Wed, 18 Nov 2009) New Revision: 13957 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13957 Modified: branches/HQ_4_2/etc/version.properties Log: Release 4.2.1 build #1266 Modified: branches/HQ_4_2/etc/version.properties =================================================================== --- branches/HQ_4_2/etc/version.properties 2009-11-18 09:28:20 UTC (rev 13956) +++ branches/HQ_4_2/etc/version.properties 2009-11-18 11:11:10 UTC (rev 13957) @@ -1,3 +1,3 @@ -#Tue Nov 17 01:14:30 PST 2009 +#Wed Nov 18 01:18:04 PST 2009 version=4.2.1 -build=1265 +build=1266 |
From: <bo...@hy...> - 2009-11-18 09:28:32
|
Author: bob Date: 2009-11-18 01:28:20 -0800 (Wed, 18 Nov 2009) New Revision: 13956 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13956 Modified: trunk/etc/version.properties Log: Release 4.3.0 build #1262 Modified: trunk/etc/version.properties =================================================================== --- trunk/etc/version.properties 2009-11-17 11:00:50 UTC (rev 13955) +++ trunk/etc/version.properties 2009-11-18 09:28:20 UTC (rev 13956) @@ -1,3 +1,3 @@ -#Tue Nov 17 00:24:13 PST 2009 +#Wed Nov 18 00:26:41 PST 2009 version=4.3.0 -build=1261 +build=1262 |
From: <bo...@hy...> - 2009-11-17 11:01:05
|
Author: bob Date: 2009-11-17 03:00:50 -0800 (Tue, 17 Nov 2009) New Revision: 13955 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13955 Modified: branches/HQ_4_2/etc/version.properties Log: Release 4.2.1 build #1265 Modified: branches/HQ_4_2/etc/version.properties =================================================================== --- branches/HQ_4_2/etc/version.properties 2009-11-17 09:05:03 UTC (rev 13954) +++ branches/HQ_4_2/etc/version.properties 2009-11-17 11:00:50 UTC (rev 13955) @@ -1,3 +1,3 @@ -#Mon Nov 16 01:11:56 PST 2009 +#Tue Nov 17 01:14:30 PST 2009 version=4.2.1 -build=1264 +build=1265 |
From: <bo...@hy...> - 2009-11-17 09:05:18
|
Author: bob Date: 2009-11-17 01:05:03 -0800 (Tue, 17 Nov 2009) New Revision: 13954 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13954 Modified: trunk/etc/version.properties Log: Release 4.3.0 build #1261 Modified: trunk/etc/version.properties =================================================================== --- trunk/etc/version.properties 2009-11-16 09:46:48 UTC (rev 13953) +++ trunk/etc/version.properties 2009-11-17 09:05:03 UTC (rev 13954) @@ -1,3 +1,3 @@ -#Fri Oct 30 12:14:25 PDT 2009 +#Tue Nov 17 00:24:13 PST 2009 version=4.3.0 -build=1260 +build=1261 |
From: <no...@gi...> - 2009-11-17 01:07:35
|
Branch: refs/heads/evolution Home: http://github.com/hyperic/hqapi Commit: 008d7527ac8c2194e4286d2595accfb010ba9bcf http://github.com/hyperic/hqapi/commit/008d7527ac8c2194e4286d2595accfb010ba9bcf Author: Jennifer Hickey <jen...@sp...> Date: 2009-11-16 (Mon, 16 Nov 2009) Changed paths: M hqu/hqapi1/app/ApplicationController.groovy Log Message: ----------- Converted ApplicationManager EJB |
From: <jh...@hy...> - 2009-11-16 21:18:33
|
Author: jhickey Date: 2009-11-16 13:18:20 -0800 (Mon, 16 Nov 2009) New Revision: 32 Added: branches/evolution/ Log: Created evolution branch Copied: branches/evolution (from rev 31, tags/LATHER_1_0_2) |
From: <bo...@hy...> - 2009-11-16 09:47:02
|
Author: bob Date: 2009-11-16 01:46:48 -0800 (Mon, 16 Nov 2009) New Revision: 13953 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13953 Modified: branches/HQ_4_2/etc/version.properties Log: Release 4.2.1 build #1264 Modified: branches/HQ_4_2/etc/version.properties =================================================================== --- branches/HQ_4_2/etc/version.properties 2009-11-15 09:44:37 UTC (rev 13952) +++ branches/HQ_4_2/etc/version.properties 2009-11-16 09:46:48 UTC (rev 13953) @@ -1,3 +1,3 @@ -#Sun Nov 15 01:12:22 PST 2009 +#Mon Nov 16 01:11:56 PST 2009 version=4.2.1 -build=1263 +build=1264 |
From: <bo...@hy...> - 2009-11-15 09:44:51
|
Author: bob Date: 2009-11-15 01:44:37 -0800 (Sun, 15 Nov 2009) New Revision: 13952 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13952 Modified: branches/HQ_4_2/etc/version.properties Log: Release 4.2.1 build #1263 Modified: branches/HQ_4_2/etc/version.properties =================================================================== --- branches/HQ_4_2/etc/version.properties 2009-11-14 09:41:50 UTC (rev 13951) +++ branches/HQ_4_2/etc/version.properties 2009-11-15 09:44:37 UTC (rev 13952) @@ -1,3 +1,3 @@ -#Sat Nov 14 01:10:12 PST 2009 +#Sun Nov 15 01:12:22 PST 2009 version=4.2.1 -build=1262 +build=1263 |
From: Mauricio <sig...@hy...> - 2009-11-14 18:37:48
|
Agent fails on startup. I installed agent-4.1.2.1-EE-1057 on linux-ppc 64 Enviroment info: java -version java version "1.5.0" Java(TM) 2 Runtime Environment, Standard Edition (build pxp64dev-20080315 (SR7)) IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 Linux ppc64-64 j9vmxp6423-20080315 (JIT enabled) J9VM - 20080314_17962_BHdSMr JIT - 20080130_0718ifx2_r8 GC - 200802_08) JCL - 20080314 uname -a Linux dlnxwas2 2.6.16.46-0.12-ppc64 #1 SMP Thu May 17 14:00:09 UTC 2007 ppc64 ppc64 ppc64 GNU/Linux cat /etc/issue Welcome to SUSE Linux Enterprise Server 10 SP1 (ppc) - Kernel Error in agent.log: 2009-11-11 18:33:34,826 ERROR [Thread-1] [AgentDaemon] Critical error running agent java.lang.UnsatisfiedLinkError: org/hyperic/sigar/SysInfo.gather(Lorg/hyperic/sigar/Sigar;)V at org.hyperic.sigar.OperatingSystem.getInstance(OperatingSystem.java:94) at org.hyperic.hq.product.PluginManager.<init>(PluginManager.java:67) at org.hyperic.hq.product.ProductPluginManager.<init>(ProductPluginManager.java:175) at org.hyperic.hq.agent.server.AgentDaemon.startPluginManagers(AgentDaemon.java:682) at org.hyperic.hq.agent.server.AgentDaemon.start(AgentDaemon.java:828) at org.hyperic.hq.agent.server.AgentDaemon$RunnableAgent.run(AgentDaemon.java:926) at java.lang.Thread.run(Thread.java:810) 2009-11-11 18:33:34,828 ERROR [Thread-1] [AgentDaemon] Agent startup failed: java.lang.NullPointerException at org.hyperic.hq.agent.server.AgentDaemon.cleanup(AgentDaemon.java:363) at org.hyperic.hq.agent.server.AgentDaemon.start(AgentDaemon.java:875) at org.hyperic.hq.agent.server.AgentDaemon$RunnableAgent.run(AgentDaemon.java:926) at java.lang.Thread.run(Thread.java:810) 2009-11-11 18:33:34,929 INFO [Thread-1] [SystemOut] Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org 2009-11-11 18:33:34,929 INFO [Thread-1] [SystemOut] Copyright 1999-2006 Tanuki Software, Inc. All Rights Reserved. 2009-11-11 18:33:34,930 INFO [Thread-1] [SystemOut] WARNING - The wrapper.native_library system property was not 2009-11-11 18:33:34,931 INFO [Thread-1] [SystemOut] set. Using the default value, 'wrapper'. Any idea how to solve this? thanks! |
From: <bo...@hy...> - 2009-11-14 09:42:03
|
Author: bob Date: 2009-11-14 01:41:50 -0800 (Sat, 14 Nov 2009) New Revision: 13951 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13951 Modified: branches/HQ_4_2/etc/version.properties Log: Release 4.2.1 build #1262 Modified: branches/HQ_4_2/etc/version.properties =================================================================== --- branches/HQ_4_2/etc/version.properties 2009-11-14 00:28:55 UTC (rev 13950) +++ branches/HQ_4_2/etc/version.properties 2009-11-14 09:41:50 UTC (rev 13951) @@ -1,3 +1,3 @@ -#Wed Nov 11 12:25:03 PST 2009 +#Sat Nov 14 01:10:12 PST 2009 version=4.2.1 -build=1261 +build=1262 |
From: <do...@hy...> - 2009-11-14 00:59:29
|
Author: dougm Date: 2009-11-13 16:28:55 -0800 (Fri, 13 Nov 2009) New Revision: 13950 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13950 Modified: trunk/src/org/hyperic/hq/product/jmx/MxServerDetector.java Log: [HHQ-3542] declare MxServerDetector.MxProcess class as static (merged r13949 from branches/HQ_4_2) Modified: trunk/src/org/hyperic/hq/product/jmx/MxServerDetector.java =================================================================== --- trunk/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:28:11 UTC (rev 13949) +++ trunk/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:28:55 UTC (rev 13950) @@ -210,7 +210,7 @@ return query.toString(); } - public class MxProcess { + public static class MxProcess { long _pid; String _installpath; String[] _args; |
From: <do...@hy...> - 2009-11-14 00:59:27
|
Author: dougm Date: 2009-11-13 16:28:11 -0800 (Fri, 13 Nov 2009) New Revision: 13949 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13949 Modified: branches/HQ_4_2/src/org/hyperic/hq/product/jmx/MxServerDetector.java Log: [HHQ-3542] declare MxServerDetector.MxProcess class as static (merged r13948 from branches/HQ_4_1) Modified: branches/HQ_4_2/src/org/hyperic/hq/product/jmx/MxServerDetector.java =================================================================== --- branches/HQ_4_2/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:27:01 UTC (rev 13948) +++ branches/HQ_4_2/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:28:11 UTC (rev 13949) @@ -210,7 +210,7 @@ return query.toString(); } - public class MxProcess { + public static class MxProcess { long _pid; String _installpath; String[] _args; |
From: <do...@hy...> - 2009-11-14 00:42:49
|
Author: dougm Date: 2009-11-13 16:14:09 -0800 (Fri, 13 Nov 2009) New Revision: 13946 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13946 Modified: branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxQuery.java Log: [HHQ-3370] If a JMX attribute was found, but returned null, set the custom property to 'Attribute was null'. Previously the value would not be reported or shown in the UI. (merged r13707 from branches/HQ_4_2) Modified: branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxQuery.java =================================================================== --- branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxQuery.java 2009-11-13 20:26:13 UTC (rev 13945) +++ branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxQuery.java 2009-11-14 00:14:09 UTC (rev 13946) @@ -133,6 +133,10 @@ stringValue = value.toString(); } setAttribute(names[i], stringValue); + } else { + // Show 'Attribute was null' in UI. + log.debug("getAttribute(" + objName + ", " + name + ") returned null"); + setAttribute(names[i], "Attribute was null"); } } |
From: <do...@hy...> - 2009-11-14 00:28:23
|
Author: dougm Date: 2009-11-13 16:27:01 -0800 (Fri, 13 Nov 2009) New Revision: 13948 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13948 Modified: branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java Log: [HHQ-3542] declare MxServerDetector.MxProcess class as static Modified: branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java =================================================================== --- branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:26:11 UTC (rev 13947) +++ branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:27:01 UTC (rev 13948) @@ -202,7 +202,7 @@ return query.toString(); } - public class MxProcess { + public static class MxProcess { long _pid; String _installpath; String[] _args; |
From: <do...@hy...> - 2009-11-14 00:27:06
|
Author: dougm Date: 2009-11-13 16:26:11 -0800 (Fri, 13 Nov 2009) New Revision: 13947 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=13947 Modified: branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java Log: make MxProcess public (sync w/ HQ_4_2 + trunk r13703) Modified: branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java =================================================================== --- branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:14:09 UTC (rev 13946) +++ branches/HQ_4_1/src/org/hyperic/hq/product/jmx/MxServerDetector.java 2009-11-14 00:26:11 UTC (rev 13947) @@ -202,13 +202,13 @@ return query.toString(); } - protected class MxProcess { + public class MxProcess { long _pid; String _installpath; String[] _args; String _url; - protected MxProcess(long pid, + public MxProcess(long pid, String[] args, String installpath) { _pid = pid; |
From: <no...@gi...> - 2009-11-13 21:28:59
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: 9f5671e9e0ed4907bb3b67a51653b203991c51bf http://github.com/hyperic/hqapi/commit/9f5671e9e0ed4907bb3b67a51653b203991c51bf Author: pnguyen <pnguyen@10.2.0.125> Date: 2009-11-13 (Fri, 13 Nov 2009) Changed paths: M src/org/hyperic/hq/hqapi1/HQApi.java M src/org/hyperic/hq/hqapi1/test/AlertFireRecovery_test.java Log Message: ----------- Added 6 more escalation-related recovery alert test cases |