0
votes
1answer
26 views

python plugin to monitoring linux system

Is there any famous python plugin/library to monitor linux system , such as : Temperature CPU usage Memory Usage Disk Usage Network Usage is there any? thank you very much :D
0
votes
1answer
49 views

Monitoring the execution of all process

How I can do it? I don't want to use a timer + an array of processes (because that's the newbie way that I allways did) I'm looking for something better and improved. I've tried using ...
1
vote
1answer
318 views

Java monitor implementation

I'm trying to do the Unisex Bathroom problem in Java. In short, there is one bathroom with an infinite number of toilets that both men and women can use. Men and women can't be in the bathroom at the ...
0
votes
1answer
31 views

Monit Seems doesn't except '@' in the conf file and consider it as a syntax error : Error: syntax error

I have the following configuration file monit: check process rabbitmq-server with pidfile /var/lib/rabbitmq/mnesia/rabbit@ubuntu.pid start program = "/etc/init.d/rabbitmq-server start" stop ...
1
vote
1answer
73 views

Use FSEvents in sandboxed app

I'm trying to use FSEvents in my sandboxed app to monitor some directories. I implemented the following class: @implementation SNTracker - (id)initWithPaths:(NSArray *)paths { self=[super init]; ...
0
votes
2answers
294 views

Android Emulator: How can I get a list of services that are running

I have the Android Emulator running in my Ubuntu VM and just installed an apk file trough the console. The emulator and adb have many options to view what is going on on the device. But how can I get ...
0
votes
1answer
104 views

How does File System monitoring works in theory?

I'm working paper about remote file synchronization (just like Dropbox). However I'm having problems finding information about how the OS File System (FS) sends file events (or how are them generated ...
0
votes
0answers
48 views

Cannot choose multiple monitors in tptp (websphere)

I'm just wondering if it should be possible to choose multiple monitors when trying to profile a Java EE application? I right click on my application -> Profile As -> Run on Server When the dialog ...
0
votes
0answers
72 views

Issue in deleting Monitors for MQ FTE?

When I tried to delete a Monitor using ftedeletemonitor command it failed with an error that the monitor couldnt be found in the given agent. When i tried with ftelistmonitors command the monitor for ...
1
vote
1answer
294 views

Ganglia fails communicate between meta and monitored nodes

We've been advised to try Ganglia as a monitoring tool for our cluster. The installation was pretty smooth but I have a problem with connectivity between gmond and gmetad. Meta node is able to see(on ...
0
votes
1answer
302 views

Monitoring executable file

I have a program I purchased several years ago, the last years when I install a new windows I was call my software programmer to install it again on my PC. Now I can't find this guy and want to open ...
0
votes
1answer
118 views

Monitoring rake test

I have a rake task running daily at a specified time, I just want a alert email(or sms) when it fails (or even the entire rake task hangs or even the server hangs). Earlier I was using AlertGrid, I ...
1
vote
3answers
511 views

System monitor for Java

We're running clusters of servers for a dozen customers. Each customer has a few app servers on Jetty. What's important here is: There are many Java processes to monitor. I need to be able to group ...
2
votes
2answers
350 views

PHP monitor for all my apps' and sites' errors, logs, etc

What I'd like I'd like to have an internal web app in PHP where I can look at all my errors, logs, etc., from all my apps and sites. Let me paint a picture to explain: I'd like to go to something ...
0
votes
1answer
731 views

Monarch/Groundwork won't update the hosts.cfg in Nagios

Given that Monarch/Groundwork is made to provide a GUI interface to Nagios, this should be a simple question, but I'm a little stuck. How can I add a host to nagios in Groundwork? According to my GW ...
0
votes
0answers
991 views

using the jnotify library - app quits after a period

This code compiles and works fine but it freezes after a while (maybe an hour or so). I have no idea why. There are no error messages or anything like that, it just stops monitoring the folder. The ...
1
vote
2answers
894 views

C# Get Process Detailed Information

here is my problem: For example, lets say I have Chrome running with 5 tabs, this will create 6 processes called Chrome.exe, one for chrome and one each for the tabs. Now using ...
3
votes
2answers
665 views

Is there any libraris popular for Python to monitor Linux/Unix system?

In erlang, thare is a os_mon module responsible for monitoring system, but I haven't found the library like that for python,is there any? thank you very much!
1
vote
5answers
291 views

Monitoring Java from within Java

I want to write a simple visualization of a Java program by displaying the program's method calls as branches of a tree. This could be done quite simply by having the program itself tell the ...
5
votes
3answers
10k views

Monitoring application calls to DLL

In short: I want to monitor selected calls from an application to a DLL. We have an old VB6 application for which we lost the source code (the company wasn't using source control back then..). This ...