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: mohsin <moh...@gm...> - 2010-07-16 20:19:14
|
Hi I want to develop a java applet to retrieve just the cpu, ram information from the client machine. off-course, client machine may have windows platform or mac or linux etc. Can HQ help me in this scenario? Can I use it in java applets? Please guide me.. thanks |
From: Doug M. <do...@hy...> - 2010-07-14 22:03:22
|
Whoops, missed that in the start of the thread. It does get the sigar.jar process args at least. What about everything else: pargs State.Name.ne=java I've only had a brief stint with FreeBSD 8 and that was a beta version, but have been meaning to bring up a instance with the release version. I'll try to do that this week. In the meantime, you can always manually create a new Server of type ActiveMQ, the default jmx.url is configured in the activemq startup script iirc. You can also automate the task using hqapi. But ideally we'll just be fixing sigar to get the process arguments. |
From: Doug M. <do...@hy...> - 2010-07-14 18:56:50
|
Have a look at the process arguments: sigar> pargs State.Name.eq=java The activemq plugin that ships with HQ uses something like: State.Name.eq=java,Args.*.sw=-Dactivemq.home |
From: Doug M. <do...@hy...> - 2010-07-14 18:54:12
|
Hi Jean, It should be in the CpuInfo.getModel string: java -jar lib/sigar.jar cpuinfo Vendor.........Intel Model..........Core(TM) i5 CPU 750 @ 2.67GHz The downside of course would be parsing out the model number. There are a few open source programs out there that use the cpuid instruction to get more fine grained detail. But the ones I've seen are command-line exe's rather than libraries. How about if you have a look around at some of those, let us know what you find and perhaps we could see about integrating into the Sigar API. Thanks, -Doug |
From: Jean <sig...@hy...> - 2010-07-13 01:16:46
|
Hello, In our environment, our agent needs to support Windows XP, 2003, 2008, Solaris 9/10 and Linux. We have a directory called lib, which include the following files: 04/29/2010 12:21 PM 2,698,577 Agent.jar 04/28/2010 05:33 PM 246,605 libsigar-amd64-linux.so 04/28/2010 05:33 PM 251,360 libsigar-amd64-solaris.so 04/28/2010 08:41 AM 285,004 libsigar-sparc-solaris.so 04/28/2010 05:05 PM 261,896 libsigar-sparc64-solaris.so 04/28/2010 05:34 PM 233,583 libsigar-x86-linux.so 04/28/2010 08:40 AM 242,880 libsigar-x86-solaris.so 04/21/2010 08:05 PM 392,704 sigar-amd64-winnt.dll 04/21/2010 08:05 PM 258,048 sigar-x86-winnt.dll 04/21/2010 08:05 PM 98,776 sigar-x86-winnt.lib 04/21/2010 08:05 PM 423,169 sigar.jar 04/29/2010 12:21 PM 1,408,542 WebAppSupport.jar 07/03/2006 04:56 PM 69,632 wrapper.dll 07/03/2006 04:56 PM 87,076 wrapper.jar This is our classpath CLASSPATH= export CLASSPATH= CLASSPATH="${CLASSPATH}:${PROPERTIES_DIRECTORY}" CLASSPATH="${CLASSPATH}:${LIB_DIRECTORY}/Agent.jar" CLASSPATH="${CLASSPATH}:${LIB_DIRECTORY}/sigar.jar" export CLASSPATH It looks like that if these files are in the same directory as the sigar.jar then it will load them automatically, as I do not have specif Java code to load the libraries. If I suspect a problem with Sigar, I run this command java -jar sigar.jar sigar> version Sigar version.......java=1.6.3.82, native=1.6.3.82 Build date..........java=07/09/2009 04:06 AM, native=07/09/2009 04:06 AM SCM rev.............java=80016c6, native=80016c6 Archlib.............libsigar-amd64-linux.so Current fqdn........appserver.xxxxxxx.com Current user........xxxxxxx OS description......Red Hat Enterprise Linux 5 OS name.............Linux OS arch.............x86_64 OS machine..........x86_64 OS version..........2.6.18-164.el5 OS patch level......unknown OS vendor...........Red Hat OS vendor version...Enterprise Linux 5 OS code name........Tikanga OS data model.......64 OS cpu endian.......little Java vm version.....16.3-b01 Java vm vendor......Sun Microsystems Inc. Java home.........../apps/qosmon/jre/jre1.6.0_20_linux_x64 |
From: jrallen9 <jus...@te...> - 2010-07-10 01:29:43
|
In my project and runtime directory i have a lib directory so this bit of codes works to load the Linux x86 so version. File executionPath = new File(""); System.load(executionPath.getAbsolutePath() + "/lib/sigar-lib/lib/libsigar-x86-linux.so"); Make sure you are loading the right so for your runtime enviornment. This bit of code is dynamic based on the JVM environment: if(System.getProperty("os.name").toLowerCase().contains("linux")){ if(System.getProperty("os.arch").toLowerCase().compareTo("i386") == 0){ System.load(executionPath.getAbsolutePath() + "/lib/sigar-lib/lib/libsigar-x86-linux.so"); } else if(System.getProperty("os.arch").toLowerCase().compareTo("amd64") == 0){ System.load(executionPath.getAbsolutePath() + "/lib/sigar-lib/lib/libsigar-amd64-linux.so"); } Let me know if that works or you have more problems. |
From: jrallen9 <jus...@te...> - 2010-07-10 01:01:30
|
This is a problem with how you are running your application. What are you entering at the command line? if you have a jar generated from your project typically your command to execute the jar would be: java -jar MyJar.jar someArgument |
From: <no...@gi...> - 2010-07-09 00:46:44
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: d54fd1d85417c076838fe731a6a7f1e71e83feef http://github.com/hyperic/hqapi/commit/d54fd1d85417c076838fe731a6a7f1e71e83feef Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/AlertdefinitionController.groovy Log Message: ----------- [HPM-112] Fix find by resource description Commit: e0651ae4fed18cb10ac82f1a61e08bdfcc216d2d http://github.com/hyperic/hqapi/commit/e0651ae4fed18cb10ac82f1a61e08bdfcc216d2d Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/AlertController.groovy M hqu/hqapi1/app/GroupController.groovy M hqu/hqapi1/app/MetricController.groovy Log Message: ----------- Account for getResource() possibly throwing PermissionException Commit: 1a9ca74f05a528f573b0d4ec126550c2036a6b0f http://github.com/hyperic/hqapi/commit/1a9ca74f05a528f573b0d4ec126550c2036a6b0f Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M ChangeLog M hqu/hqapi1/app/AlertController.groovy M hqu/hqapi1/app/AlertdefinitionController.groovy M hqu/hqapi1/app/ApiController.groovy M hqu/hqapi1/app/GroupController.groovy M hqu/hqapi1/app/MetricController.groovy M hqu/hqapi1/app/ResourceController.groovy M src/org/hyperic/hq/hqapi1/test/ResourceFind_test.java M src/org/hyperic/hq/hqapi1/test/ResourceGet_test.java Log Message: ----------- Fix merge conflicts. Commit: 487e22203e9ae7b5bb919fa8db71199dcf2b07c0 http://github.com/hyperic/hqapi/commit/487e22203e9ae7b5bb919fa8db71199dcf2b07c0 Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/ApiController.groovy Log Message: ----------- Skip permission checking on individual groups, not supported in HQU. Commit: 4d3e3c41e1fcf0e639bbbbc3ea1a6c45f934bea7 http://github.com/hyperic/hqapi/commit/4d3e3c41e1fcf0e639bbbbc3ea1a6c45f934bea7 Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/AlertdefinitionController.groovy M hqu/hqapi1/app/ControlController.groovy Log Message: ----------- Adjustments for error codes to get tests passing. |
From: <no...@gi...> - 2010-07-09 00:21:38
|
Branch: refs/heads/hqapi-2.x Home: http://github.com/hyperic/hqapi Commit: a9086745f73c9f0d16282697cd1d27312d69da87 http://github.com/hyperic/hqapi/commit/a9086745f73c9f0d16282697cd1d27312d69da87 Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M ChangeLog M hqu/hqapi1/app/ApiController.groovy M hqu/hqapi1/app/ResourceController.groovy M src/org/hyperic/hq/hqapi1/test/ResourceFind_test.java M src/org/hyperic/hq/hqapi1/test/ResourceGet_test.java Log Message: ----------- [HHQ-4133] Perform permission checking on ResourceApi. Commit: 9db95529f01d44c456041e8ec305e4c421fa440f http://github.com/hyperic/hqapi/commit/9db95529f01d44c456041e8ec305e4c421fa440f Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/AlertController.groovy Log Message: ----------- Update findAlertsByResource() to account for PermissionException. Commit: d54fd1d85417c076838fe731a6a7f1e71e83feef http://github.com/hyperic/hqapi/commit/d54fd1d85417c076838fe731a6a7f1e71e83feef Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/AlertdefinitionController.groovy Log Message: ----------- [HPM-112] Fix find by resource description Commit: e0651ae4fed18cb10ac82f1a61e08bdfcc216d2d http://github.com/hyperic/hqapi/commit/e0651ae4fed18cb10ac82f1a61e08bdfcc216d2d Author: Ryan Morgan <rm...@hy...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/AlertController.groovy M hqu/hqapi1/app/GroupController.groovy M hqu/hqapi1/app/MetricController.groovy Log Message: ----------- Account for getResource() possibly throwing PermissionException |
From: <no...@gi...> - 2010-07-08 21:51:23
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: 0237773b62a19c6fee5955255812692ee05ce666 http://github.com/hyperic/hqapi/commit/0237773b62a19c6fee5955255812692ee05ce666 Author: pnguyen <pnguyen@192.168.0.226> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/ServerconfigController.groovy M src/org/hyperic/hq/hqapi1/test/ServerConfigSet_test.java Log Message: ----------- [[HHQ-3144] Updated data validation logic for some server config properties |
From: <no...@gi...> - 2010-07-08 21:28:30
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: f3f86e0392414ba65a265d1ee1cdfc1f1c1755fd http://github.com/hyperic/hqapi/commit/f3f86e0392414ba65a265d1ee1cdfc1f1c1755fd Author: pnguyen <pnguyen@192.168.0.226> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqu/hqapi1/app/ServerconfigController.groovy M src/org/hyperic/hq/hqapi1/test/ServerConfigSet_test.java Log Message: ----------- [HHQ-3144] Add data validation for some server config properties |
From: <no...@gi...> - 2010-07-08 17:38:55
|
Branch: refs/heads/evolution Home: http://github.com/hyperic/hqapi Commit: b34fa059b626a19916c9f1c84370fb23f8d577de http://github.com/hyperic/hqapi/commit/b34fa059b626a19916c9f1c84370fb23f8d577de Author: Jennifer Hickey <jen...@sp...> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M hqapi1-plugin/src/main/assembly/assembly.xml Log Message: ----------- HQ-2219 Ensure that packaged hqap1-client tar is always named with project version (and not build stamp) |
From: <no...@gi...> - 2010-07-08 16:23:22
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: 0fab010e51441718e4eec0e849d797e3cf940436 http://github.com/hyperic/hqapi/commit/0fab010e51441718e4eec0e849d797e3cf940436 Author: pnguyen <pnguyen@192.168.0.70> Date: 2010-07-08 (Thu, 08 Jul 2010) Changed paths: M ChangeLog Log Message: ----------- Update change log for getting and syncing platform resources by FQDN. |
From: <no...@gi...> - 2010-07-07 23:51:36
|
Branch: refs/heads/evolution Home: http://github.com/hyperic/hqapi Commit: b7f4a28c1b23619253f60b916eb2362216042b3f http://github.com/hyperic/hqapi/commit/b7f4a28c1b23619253f60b916eb2362216042b3f Author: pnguyen <pnguyen@192.168.1.66> Date: 2010-06-27 (Sun, 27 Jun 2010) Changed paths: M hqu/hqapi1/app/ResourceController.groovy Log Message: ----------- If vSphere platforms are renamed, check to ensure name is unique. Commit: 016673828fbbc6f86b238f978108b6c4b9b8144f http://github.com/hyperic/hqapi/commit/016673828fbbc6f86b238f978108b6c4b9b8144f Author: pnguyen <pnguyen@192.168.0.63> Date: 2010-06-29 (Tue, 29 Jun 2010) Changed paths: M hqu/hqapi1/app/ServerconfigController.groovy M src/org/hyperic/hq/hqapi1/ServerConfigApi.java M src/org/hyperic/hq/hqapi1/test/ServerConfigSet_test.java M src/org/hyperic/hq/hqapi1/tools/ServerConfigCommand.java Log Message: ----------- [HHQ-3144] Only allow a subset of server configs to be edited. Commit: 878ee678b6105fa4302ecb0ee813ed6a924ec3bc http://github.com/hyperic/hqapi/commit/878ee678b6105fa4302ecb0ee813ed6a924ec3bc Author: pnguyen <pnguyen@192.168.0.63> Date: 2010-06-29 (Tue, 29 Jun 2010) Changed paths: M hqu/hqapi1/app/ResourceController.groovy Log Message: ----------- Move the vSphere platform renaming logic to the vSphere plugin Commit: 39ec1520e18082b6ce47412492d630c414701131 http://github.com/hyperic/hqapi/commit/39ec1520e18082b6ce47412492d630c414701131 Author: Jennifer Hickey <jen...@sp...> Date: 2010-07-07 (Wed, 07 Jul 2010) Changed paths: M hqapi1-integration-tests/src/test/java/org/hyperic/hq/hqapi1/test/ServerConfigSet_test.java M hqapi1-plugin/src/main/groovy/app/ResourceController.groovy M hqapi1-plugin/src/main/groovy/app/ServerconfigController.groovy M hqapi1/src/main/java/org/hyperic/hq/hqapi1/ServerConfigApi.java M hqapi1/src/main/java/org/hyperic/hq/hqapi1/tools/ServerConfigCommand.java Log Message: ----------- Merged latest master |
From: Al <spi...@ho...> - 2010-07-04 20:56:44
|
I just started using SIGAR and I have some trouble making it work on a linux machine. I am getting java.lang.UnsatisfiedLinkError on the native function getNetInterfaceList. I have installed the .so with ldconfig and I also tried doing a System.load() on the .so library in the code before calling the SIGAR calls. It didn't complain about the loading but still throws that exception. Any help would be greatly appreciated. |
From: Jean <sig...@hy...> - 2010-07-04 20:56:37
|
Hello, I do not have Windows 7 to test, but we found a similar problem with Windows 2003 as the process/agent need to run with Admin priviledges to sample all running processes. In our case we run the agent as a Windows Service, and this provides all the credentials to sample all processes. Hope this helps. Jean |
From: abdoul <sig...@hy...> - 2010-07-04 20:56:26
|
I'm using a windows 7 64 bits. I'm getting an access denied when i try to fetch processes information. does somebody know how to fix the problem? thanks |
From: sooth <aa...@ya...> - 2010-07-04 20:56:19
|
Ok so I've downloaded the latest package, extracted it, and created a test project in Eclipse. I imported one of the sample files to test out, but when I run it all I get is this: Usage: javaw [-options] class [args...] (to execute a class) or javaw [-options] -jar jarfile [args...] (to execute a jar file) where options include: -client to select the "client" VM -server to select the "server" VM -hotspot is a synonym for the "client" VM [deprecated] The default VM is client. -cp <class search path of directories and zip/jar files> -classpath <class search path of directories and zip/jar files> A ; separated list of directories, JAR archives, and ZIP archives to search for class files. -D<name>=<value> set a system property -verbose[:class|gc|jni] enable verbose output -version print product version and exit -version:<value> require the specified version to run -showversion print product version and continue -jre-restrict-search | -jre-no-restrict-search include/exclude user private JREs in the version search -? -help print this help message -X print help on non-standard options -ea[:<packagename>...|:<classname>] -enableassertions[:<packagename>...|:<classname>] enable assertions -da[:<packagename>...|:<classname>] -disableassertions[:<packagename>...|:<classname>] disable assertions -esa | -enablesystemassertions enable system assertions -dsa | -disablesystemassertions disable system assertions -agentlib:<libname>[=<options>] load native agent library <libname>, e.g. -agentlib:hprof see also, -agentlib:jdwp=help and -agentlib:hprof=help -agentpath:<pathname>[=<options>] load native agent library by full pathname -javaagent:<jarpath>[=<options>] load Java programming language agent, see java.lang.instrument -splash:<imagepath> show splash screen with specified image" I can't get the darn this to run at all! Any help? |
From: <no...@gi...> - 2010-06-29 23:19:09
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: 878ee678b6105fa4302ecb0ee813ed6a924ec3bc http://github.com/hyperic/hqapi/commit/878ee678b6105fa4302ecb0ee813ed6a924ec3bc Author: pnguyen <pnguyen@192.168.0.63> Date: 2010-06-29 (Tue, 29 Jun 2010) Changed paths: M hqu/hqapi1/app/ResourceController.groovy Log Message: ----------- Move the vSphere platform renaming logic to the vSphere plugin |
From: <no...@gi...> - 2010-06-29 23:10:39
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: 016673828fbbc6f86b238f978108b6c4b9b8144f http://github.com/hyperic/hqapi/commit/016673828fbbc6f86b238f978108b6c4b9b8144f Author: pnguyen <pnguyen@192.168.0.63> Date: 2010-06-29 (Tue, 29 Jun 2010) Changed paths: M hqu/hqapi1/app/ServerconfigController.groovy M src/org/hyperic/hq/hqapi1/ServerConfigApi.java M src/org/hyperic/hq/hqapi1/test/ServerConfigSet_test.java M src/org/hyperic/hq/hqapi1/tools/ServerConfigCommand.java Log Message: ----------- [HHQ-3144] Only allow a subset of server configs to be edited. |
From: <no...@gi...> - 2010-06-28 04:58:18
|
Branch: refs/heads/master Home: http://github.com/hyperic/hqapi Commit: b7f4a28c1b23619253f60b916eb2362216042b3f http://github.com/hyperic/hqapi/commit/b7f4a28c1b23619253f60b916eb2362216042b3f Author: pnguyen <pnguyen@192.168.1.66> Date: 2010-06-27 (Sun, 27 Jun 2010) Changed paths: M hqu/hqapi1/app/ResourceController.groovy Log Message: ----------- If vSphere platforms are renamed, check to ensure name is unique. |
From: Trey <sig...@hy...> - 2010-06-27 07:00:10
|
Nothing useful enough to truly uniquely identify the activemq process. sigar> pinfo State.Name.eq=java pid=67882 state={Name=java, State=S, Ppid=67778, Priority=134, Nice=0} mem={Resident=25604096, Size=1310720} cpu={User=215, LastTime=1277484599573, Percent=0.0, StartTime=1277484589791, Total=229, Sys=14} ------------------------ pid=64486 state={Name=java, State=S, Ppid=64349, Priority=128, Nice=0} mem={Resident=25317376, Size=1310720} cpu={User=9952, LastTime=1277484599574, Percent=0.0, StartTime=1277403596942, Total=24433, Sys=14481} ------------------------ pid=64418 state={Name=java, State=S, Ppid=64410, Priority=132, Nice=0} mem={Resident=102281216, Size=1179648} cpu={User=56602, LastTime=1277484599574, Percent=0.0, StartTime=1277402346198, Total=96298, Sys=39696} --More-- (Page 1 of 2) ------------------------ pid=64383 state={Name=java, State=S, Ppid=64375, Priority=128, Nice=0} mem={Resident=119799808, Size=1179648} cpu={User=35143, LastTime=1277484599574, Percent=0.0, StartTime=1277402254890, Total=53201, Sys=18058} ------------------------ pid=31110 state={Name=java, State=S, Ppid=1, Priority=128, Nice=0} mem={Resident=204992512, Size=1310720} cpu={User=5575093, LastTime=1277484599575, Percent=0.0, StartTime=1274152090341, Total=9598637, Sys=4023544} ------------------------ |
From: Trey <sig...@hy...> - 2010-06-27 07:00:09
|
Great, thanks, I'll take a look at that... but I'll still have to find a way to coerce activemq into writing a pid file. Anyone have any idea how to get sigar to report params? |
From: Jeppe T. <sig...@hy...> - 2010-06-27 07:00:09
|
Have you tried out "pinfo State.Name.eq=java"? It may show more distinct information about each of the Java processes. |
From: Trey <sig...@hy...> - 2010-06-27 07:00:06
|
I'm having some difficulting identifying a unique java process. sigar> pargs State.Name.eq=java pid=64486 0=>/usr/local/openjdk6//bin/java<= 1=>-jar<= 2=>./bundles/agent-4.3.0-1443/pdk/lib/sigar.jar<= ------------------------ pid=64418 ------------------------ pid=64383 ------------------------ pid=53889 ------------------------ pid=31110 ------------------------ All the info I get about other processes is just pid... I'm running sigar.jar as the root user. This is FreeBSD 8 BTW. Is it possible to use a process.query that just pulls the pid out of a pid file? |