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: mike m. <mi...@an...> - 2007-03-28 23:32:49
|
Couldnt you just have the alert setup to when the availability changes. Then you get up and down email notice. |
|
From: <cl...@hy...> - 2007-03-28 22:47:21
|
Author: clee Date: 2007-03-28 14:47:14 -0800 (Wed, 28 Mar 2007) New Revision: 3945 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3945 Modified: trunk/plugins/mysql/src/org/hyperic/hq/plugin/mysql/MySQLMeasurementPlugin.java Log: The GLOBAL and SESSION options are new in MySQL 5.0.2. With the GLOBAL modifier, SHOW STATUS displays the status values for all connections to MySQL. With SESSION, it displays the status values for the current connection. Before MySQL 5.0.2, SHOW STATUS returned global status values. Because the default as of 5.0.2 is to return session values, this is incompatible with previous versions. Modified: trunk/plugins/mysql/src/org/hyperic/hq/plugin/mysql/MySQLMeasurementPlugin.java =================================================================== --- trunk/plugins/mysql/src/org/hyperic/hq/plugin/mysql/MySQLMeasurementPlugin.java 2007-03-28 21:41:37 UTC (rev 3944) +++ trunk/plugins/mysql/src/org/hyperic/hq/plugin/mysql/MySQLMeasurementPlugin.java 2007-03-28 22:47:14 UTC (rev 3945) @@ -53,7 +53,7 @@ static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; // Measurement Queries - private static final String STATUSQUERY = "SHOW STATUS LIKE "; + private static final String STATUSQUERY = "SHOW /*!50002 GLOBAL */ STATUS LIKE "; private static final String TABLEQUERY = "SHOW TABLE STATUS LIKE %table%"; private static final String INDEXQUERY = "SHOW INDEX FROM %table%"; private static final String DBQUERY = "SHOW TABLE STATUS"; |
|
From: mike m. <mi...@an...> - 2007-03-28 22:21:23
|
I reinstall and did what you said and it cleared up everything . I now see all the services that I should in the platform services health column. |
|
From: <jt...@hy...> - 2007-03-28 21:41:42
|
Author: jtravis Date: 2007-03-28 13:41:37 -0800 (Wed, 28 Mar 2007) New Revision: 3944 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3944 Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy Log: Expose controller name to the subclasses, and also allow action to be set Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy =================================================================== --- trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 20:47:46 UTC (rev 3943) +++ trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 21:41:37 UTC (rev 3944) @@ -22,9 +22,9 @@ Log log = LogFactory.getLog(this.getClass()) String action File pluginDir + String controllerName private invokeArgs - private String controllerName private AuthzSubject user private File viewDir @@ -32,10 +32,6 @@ this.controllerName = name } - private void setAction(String action) { - this.action = action - } - protected setInvokeArgs(args) { this.invokeArgs = args } |
|
From: <jt...@hy...> - 2007-03-28 20:47:50
|
Author: jtravis Date: 2007-03-28 12:47:46 -0800 (Wed, 28 Mar 2007) New Revision: 3943 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3943 Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy Log: Don't use the server to determine the path for linking to resources, just use our current URL Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy =================================================================== --- trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 18:22:59 UTC (rev 3942) +++ trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 20:47:46 UTC (rev 3943) @@ -67,7 +67,7 @@ } public String url_for(opts, htmlOpts) { - def url = "" + def url = "" if (opts.containsKey('controller')) { url += "../" + h(opts['controller']) @@ -79,7 +79,10 @@ url += h(opts['action']) } else if (opts.containsKey('resource')) { def entId = opts['resource'].entityId.appdefKey - url = getHQHelper().serverURL + "Resource.do?eid=$entId" + def curUrl = new URL(invokeArgs.request.requestURL + "") + def newURL = new URL(curUrl.protocol, curUrl.host, curUrl.port, + "/Resource.do?eid=$entId") + url = newURL.toString() } url += '?' |
|
From: John M. W. <joh...@hy...> - 2007-03-28 20:27:52
|
Just in case some folks were not aware, there is a patch for HQ 3.0.2 that fixes a bug that broke auto-discovery of MySQL databases and tables. To get your MySQL monitoring fix, go here: http://jira.hyperic.com/browse/HHQ-765 Follow the directions on that page, and you're set. -John Mark |
|
From: John M. W. <joh...@hy...> - 2007-03-28 20:22:26
|
perhaps the bets solution would be to have the client start reliably upon reboot? Or was that already covered in another thread... |
|
From: John M. W. <joh...@hy...> - 2007-03-28 20:17:33
|
Hi, Can you post what kind of logs you're trying to monitor, what you've done thus far, and whether you're getting any kind of error? -John Mark |
|
From: German L. <la...@gm...> - 2007-03-28 20:13:21
|
yes, i'm sure ;-) On 3/28/07, John Mark Walker <joh...@hy...> wrote: > > Hi, > > Please make sure to mark Doug's answer as helpful so that he can get the > points. > > -JM > --=20 ------------------------------------------------------- Germ=E1n Laull=F3n http://www.laullon.com |
|
From: John M. W. <joh...@hy...> - 2007-03-28 20:07:47
|
Hi, Please make sure to mark Doug's answer as helpful so that he can get the points. -JM |
|
From: Ryan M. (JIRA) <ji...@hy...> - 2007-03-28 19:23:42
|
Upgrade to 3.0.3 and 3.1 fail on Oracle
---------------------------------------
Key: HHQ-789
URL: http://jira.hyperic.com/browse/HHQ-789
Project: Hyperic HQ
Type: Bug
Components: Installer
Versions: 3.0.0, 3.0.1, 3.0.2
Environment: HQ 3.1.0 Oracle 10g, upgrade from 3.0.2.
Reporter: Ryan Morgan
Assigned to: Jon Travis
Priority: Blocker
Fix For: 3.0.3, 3.1.0
In 3.0.3 we have changed the measurement tables on Oracle back from double precision to NUMBER(24,5).
It's also likely we'll have issues with Postgres.
An ERROR occurred, the installation cannot continue.
FATAL EXCEPTION at /home/hyperic/hyperic-hq-installer/installer-3.1.0-EE/data/setup.xml:435: : The following error occurred while exe cuting this line:
/home/hyperic/hyperic-hq-installer/installer-3.1.0-EE/data/setup.xml:449: The following error occurred while executing this line:
/home/hyperic/hyperic-hq-installer/installer-3.1.0-EE/data/setup.xml:553: The following error occurred while executing this line:
/home/hyperic/hyperic-hq-installer/installer-3.1.0-EE/data/setup-db-Oracle9i.xml:21: The following error occurred while executing thi s line:
/home/hyperic/hyperic-hq-installer/installer-3.1.0-EE/data/setup-db-common.xml:95: The following error occurred while executing this line:
/home/hyperic/hyperic-hq-installer/installer-3.1.0-EE/data/db-upgrade.xml:28: DBUpgrader: Error running SchemaSpec: 3.22: Error running SchemaSpecTask: org.hyperic.tools.ant.dbupgrade.SST_DirectSQL: Error executing statement desc=[null] SQL=[
alter table eam_measurement_data modify (
value NUMERIC(24,5)
)
] java.sql.SQLException: ORA-01440: column to be modified must be empty to decrease precision or scale
--------------------------------------------------------------------------------
Deleting temporary JRE
--
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: mike m. <mi...@an...> - 2007-03-28 18:25:35
|
OK. I was just mimicking the caps that show up for enttries in the HYPERIC dashboard and other places. I will do.!!! |
|
From: mike m. <mi...@an...> - 2007-03-28 18:23:04
|
Thanks, I didnt wait long after it startted,and I killed it to start as a service. Thanks so much for replying. I will try this today, Thanks again |
|
From: <jt...@hy...> - 2007-03-28 18:23:02
|
Author: jtravis Date: 2007-03-28 10:22:59 -0800 (Wed, 28 Mar 2007) New Revision: 3942 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3942 Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy Log: Add linking to controllers Modified: trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy =================================================================== --- trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 18:08:44 UTC (rev 3941) +++ trunk/ui_plugins/rendit_sys/org/hyperic/hq/ui/rendit/BaseController.groovy 2007-03-28 18:22:59 UTC (rev 3942) @@ -69,6 +69,12 @@ public String url_for(opts, htmlOpts) { def url = "" + if (opts.containsKey('controller')) { + url += "../" + h(opts['controller']) + if (opts.containsKey('action')) + url += "/" + } + if (opts.containsKey('action')) { url += h(opts['action']) } else if (opts.containsKey('resource')) { |
|
From: <rm...@hy...> - 2007-03-28 18:08:48
|
Author: rmorgan Date: 2007-03-28 10:08:44 -0800 (Wed, 28 Mar 2007) New Revision: 3941 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3941 Modified: trunk/build.xml Log: Only include hqu_plugins for rendit-deploy, rendit_sys is deployed into the ear. Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2007-03-28 13:04:45 UTC (rev 3940) +++ trunk/build.xml 2007-03-28 18:08:44 UTC (rev 3941) @@ -449,7 +449,9 @@ <fileset dir="${rendit_sys.dir}"/> </copy> <copy todir="${jboss.home}"> - <fileset dir="${basedir}/ui_plugins"/> + <fileset dir="${basedir}/ui_plugins"> + <include name="hqu_*/**"/> + </fileset> </copy> </target> |
|
From: tom <hq-...@hy...> - 2007-03-28 16:29:16
|
This gets me one step closer. I see some data for the weblogic server but n= ot what I need I upgrades from HQ 2.x to 3.0.2 for both server and client. Now HQ will see the 9.1 server and give some info on JTA and sockets but te= lls me =93This resource has not been configured.=94 I have configured it se= veral times. I have rebooted the server, the database, the agent, and confi= gured it again still, no luck |
|
From: Charles L. <cl...@hy...> - 2007-03-28 16:21:13
|
HQ server does not include a sendmail server, it requires an external one in your infrastructure. See the following thread that has some relevant information: http://forums.hyperic.com/jiveforums/message.jspa?messageID=3160 If you didn't set this up originally at install time, you can change the settings in hq-server.conf and restart your server for it to take effect. Charles |
|
From: Josh J. <jj...@gc...> - 2007-03-28 16:01:30
|
I just found something out. I was trying to click on the Platform that the service ran on. Since it wasn't listed I assumed I had to add it (noob assumption). If you go to Browse Resources, click on the Service sub heading, and do a search for the service name I found it just fine and was able to set my alert without adding a manual process. |
|
From: Josh J. <jj...@gc...> - 2007-03-28 15:58:02
|
Thanks for the help, I had to click on show all metrics and then check the ones I wanted and tell it how often to collect. |
|
From: Ryan M. <rm...@hy...> - 2007-03-28 15:37:05
|
On the machine that's missing the metrics, if you click on the 'Show all metrics' does it show the missing metrics as enabled and having a collection interval? If so, check the agent log on that machine for any errors collecting those metrics. -Ryan |
|
From: Ryan M. <rm...@hy...> - 2007-03-28 15:25:25
|
This can be done via the network services, see our docs: http://support.hyperic.com/confluence/display/DOCSHQ30/Network+Services -Ryan |
|
From: Josh J. <jj...@gc...> - 2007-03-28 15:06:09
|
Pics |
|
From: Josh J. <jj...@gc...> - 2007-03-28 15:01:59
|
I have 2 servers that are very similar, running Windows Server 2003, and for one server I have a bunch more monitoring metrics available for the Network Server Interface than the other. The one server doesn't show any of the error statistics and that is the server I need that data for because it is at capacity and having communication issues. Please see the attached pics, if anyone can help me get the extra metrics available on the other server so I can track errors that'd be great. |
|
From: Josh J. <jj...@gc...> - 2007-03-28 14:57:16
|
I'm by no means an expert but I experienced this problem also. This is why I believe it happened to me.
1. I installed server and verified it was running and I could connect to HQ.
2. I installed my agent on another box and as soon as it said it successfully started I killed it so that I could proceed with installing the agent as a service.
3. I installed the agent as a service and started it.
4. That particular agent in HQ didn't show WIN32 or any of the hard drives.
I fixed it by removing the agent and reinstalling it. After you start the agent for the first time and it communicates with the server let it run for a while before you kill it to install as a service.
1. Stop the agent service on the windows box
2. Open your command line, change to your agents directory, and run hq-agent -u to uninstall as a service
3. Delete the Data folder from your agent directory
4. Use the SERVER installation download to install your agent
a. By running setup.bat -full (option 3 for agent install)
5. Complete the agent install so that your window says "agent successfully started"
6. DO NOT CLOSE THAT WINDOW
7. Log into your HQ and accept your auto discovery inventory, browse to that resource, and you should see that it is only partially populated
8. Refresh every few minutes and you should see that all of the availability icons change to green checks and your additional item like disk drives and CPU get added.
9. When satisfied close your agent, install it as a service, and restart it.
I was killing my initial agent discovery before it could complete, it sounds like you are having the same symptoms.
|
|
From: Josh J. <jj...@gc...> - 2007-03-28 14:39:06
|
Venkat,
I had the same issue when I set up my environment the first time around. I had tried to get all fancy during the server setup and specify different email addresses, etc.
I just reran the server installation with -full behind it and accepted all defaults for all email related questions and it works great now. Your issue may require more than that, but it fixed me up.
Best of luck,
Josh
|