0
votes
1answer
29 views

Java Monitors: Does having a Java monitor with Synchronised Methods Avoid Deadlocks?

Basically, if I have lots of synchronised methods in a monitor. Will this effectively avoid deadlocks?
0
votes
1answer
33 views

How to ensure a process is running in Ruby

I call a ffmpeg command in rails to grep a stream and push it to Wowza so that a apple device can see it also, the command is something like this Thread.new do `/usr/local/bin/ffmpeg -re -i ...
0
votes
1answer
48 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 ...
0
votes
1answer
42 views

How does Monitor Synchronisation work?

So I'm reading about synchronisation and have come across Monitors, but can't seem to grasp how they work. I see the general layout is something in the format of the following with what I can see as ...
0
votes
0answers
53 views

In a C# Windows Forms Application, how do I hide a form when a particular process starts?

I am writing a program that launches an installer called install.exe. This file (installer.exe) launches another process called MSDE_SP.exe. I need to display a form all the way up until MSDE_SP ...
0
votes
1answer
30 views

Process Performance Monitor [closed]

I am looking for a tool that can attach itself to any process in windows and monitor its performance such as CPU utilization, Memory Utilization, IO reads/writes and either generate a csv file with ...
0
votes
1answer
175 views

How to monitor network traffic of running processes

I need a program which monitors network traffic. But like this way: It will show running processes and which IPs and websites are they getting/sending packets. I had such program, but I can't find nor ...
3
votes
1answer
104 views

Monitor multiple variable amounts of processes' start and exit [closed]

I need some code to monitor when a program starts and stops, asynchronously. I can work with VB.NET or C# Code. Thanks.
3
votes
1answer
94 views

Why is the 'monitor' option used in erlang:spawn_opt disabled?

I happen to read about a spawn_opt called monitor: http://www.erlang.org/doc/man/erlang.html#spawn_opt-2 But when I use it, I got this: 1> gen_server:start(some_module, [], [{spawn_opt, ...
1
vote
1answer
83 views

Determine what script/module a python instance is executing?

I'm writing a program to monitor a python script running. There will be multiple instances of this script(which is a server) running from different locations on the computer. My program will be ...
1
vote
2answers
236 views

Perl: Monitor a background process's output without waiting for it to complete

I'm attempting to write a manager in Perl to automate a bioinformatics pipeline my lab has been using. (The REPET pipeline, for anyone who's interested.) The pipeline has eight steps, several of which ...
2
votes
2answers
151 views

Monitor concurrency (sharing object across processes) in Python

I'm new here and I'm Italian (forgive me if my English is not so good). I am a computer science student and I am working on a concurrent program project in Python. We should use monitors, a class with ...
0
votes
0answers
184 views

Ruby Open3.popen3 stdout pipe doesn't work when using a process monitor

I have noticed that when I run a ruby app using a process monitor, such as God or Bluepill, the part of the application that makes a Open3.popen3() { |stdin, stdout, stderr| } call doesn't work, ...
2
votes
2answers
128 views

Monitor a process (everything)

I want to monitor a process and everything it does (every signal it gives SIGINT what ever). Is there anyway to do this? I'm using Linux (Ubuntu 11 to be exact)
0
votes
1answer
163 views

Process Operations (Monitoring)

What I'm trying to accomplish in my program is to knows if certain processes are running (I need to know about all running instances). I want to hold them in a combobox, store as a object, so I can ...
0
votes
2answers
822 views

Monitor %CPU time, Handle Count, Private Bytes, Thread Count for a process in linux

How to monitor the following metrics for a process in linux? I am using suse linux enterprise 11 SP1 64 bit. %CPU time Handle Count Private Bytes thread Count Is these any tool available for linux ...
1
vote
0answers
109 views

Critical Regions Construct for Processes using Semaphore & Mutex (Hoare 1973)

Studying basic concepts of OS , I came upon this code under the topic of Critical region Constructs in high level programming languages. This was given by Hoare in 1973. I searched online but couldnt ...
0
votes
1answer
93 views

Cocoa NSNotification monitor process

I want to use NSNotication to monitor a process e.g. iTunes. I want a notification when iTunes is "available", the process of iTunes is running. How to do that?
0
votes
0answers
107 views

System call ptrace and write made by process

I have monitor and process, I have to do: with ptrace() the write made by process, need to be repeted two times. I have to admit that I dont understand very well. I sincerely doubt that it isnt ...
5
votes
2answers
217 views

Python watching for process start up?

Is there any way to watch for a new process with name 'X' starting in python (ideally) or bash? I know that I can look at running processes, but that is not fast enough for my needs. The only think ...
0
votes
1answer
824 views

C# Get CPU and RAM from specific process (performance counters)

I would like to retrieve the cpu and ram usage at that point for the foreground process (or a specific one). Retrieving the window's title is not a problem and that part works. But the cpu display ...
2
votes
1answer
390 views

Erlang process monitoring itself

I am trying to create a process in Erlang that can monitor itself and restart of it exits. So far I've had no luck at all, so don't have any code to show. Is this even possible in Erlang, and if so ...
0
votes
1answer
351 views

Ruby - How to control external process and monitor output from web app?

I have a web app which needs to be able to interact with an already running external process. I need to have the ability to capture STDOUT and redirect it to the browser (e.g. for monitoring by a ...
0
votes
1answer
205 views

Using Memory Monitor on a single process on Instruments on OS X?

I'm having some issues with Instruments on OS X. I'm trying to monitor the memory consumption of a single process over time on OS X. I'm using Instruments 4.1 for that, with the "Memory Monitor" ...
0
votes
1answer
168 views

Java Killing Popup Process

I'm now writing a simple program to simulate real user surfing web. However, if there is any popup or program pop up on the screen, I need to either minimize or close it to prevent it from interacting ...
0
votes
1answer
90 views

Track system restart

I've written a windows service thats part of software, I deployed the service on both windows server 2003 and 2008, the client contacted me complaining that when they restarted their servers they kept ...
2
votes
2answers
208 views

Monitor an application with .Net

The team here runs jobs on their PC, then has it launch an email, make an attachment, then send it. They can schedule this job. The problem they have is it pops a window asking if you want to send ...
0
votes
3answers
196 views

What is the fast and reliable way to monitor a java process?

I have a process that will create a java process in another jvm. They stay on the same machine. My understanding is in the case that two processes run on different machines, generally it can be done ...
1
vote
2answers
233 views

Help needed with windows hooks

I am working on building a system that can monitor how users react to security alerts on their systems (software updates, warnings etc.). It also needs to monitor the web traffic and the processes ...
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
3answers
4k views

Monitor Process in Python?

I think this is a pretty basic question, but here it is anyway. I need to write a python script that checks to make sure a process, say notepad.exe, is running. If the process is running, do nothing. ...
2
votes
0answers
730 views

Monitoring process-level performance counters in Windows Perfmon

I am sure everybody has bumped into this. As you scale a web server that uses multiple application pools, it's valuable to collect performance counters for each application pool 24x7. The only problem ...
4
votes
5answers
3k views

Programmatic resource monitoring per process in Linux

I want to know if there is an efficient solution to monitor a process resource consumption (cpu, memory, network bandwidth) in Linux. I want to write a daemon in C++ that does this monitoring for some ...
4
votes
1answer
1k views

How to know child process status and resource usage on windows?

I want to write a program, which will launch a child process. The child process may be windows mode or console mode program. I want to monitor the child process status and resource usage. e.g. I want ...
0
votes
2answers
330 views

Monitoring windows processes

I'd like get a notification if a particular process starts. For ex., if xyz.exe starts in the background, I need a messagebox stating the same. I'm a little familiar with Windows Hooks in VC++. Can ...