Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
150 views

Monitor running apps in .NET?

We have several apps that run on a Windows 2003/2008 server. Some of these apps are Java JAR files that are kicked off with a Scheduled Task using a app.cmd file. Others are "big ones" like SQL ...
3
votes
2answers
73 views

Java on Windows needs to log CPU load and similar OS specific performance information

There is a Java library running on windows machines that needs to log information about the OS like CPU load, memory occupied by the JVM etc. which I'm quite sure Java itself cannot obtain, because it ...
2
votes
1answer
1k views

What is C:\WINDOWS\assembly\NativeImages_v2.0.50727_32\index3a0.dat used for?

I'm trying to diagnose why out .Net ActiveX control has a much slower load time on certain machines than others and I've discovered (using ProcMon) that on machines that load the control slowly the ...
2
votes
2answers
156 views

How Can I Catch a Mysterious Process Killer?

We had this customer complaining out product was constantly crashing after running fine for 2-5 minutes. It took few days of guessing, but we came to the following conclusion: When the process is ...
1
vote
1answer
53 views

JMX - Monitor process existence

I want to be able to monitor a process's existence continuously and restart it if it had crashed or killed for any reason using JMX. Stopping and starting a process is not a probelm as the agent ...
1
vote
1answer
84 views

How to monitor a process running in Linux virtual machine from host windows machine?

I have installed a linux machine inside my Windows (using hyper-v server for that). Any idea how I could develop an application in c# which monitors a process running inside Linux machine. So for ...
1
vote
3answers
91 views

Best practice to monitor program life

I want to hear your opinion about program life monitoring. This is the scenario. You have a simple program which normally works, that means that it's well written, exception are handled and so on. ...
1
vote
2answers
71 views

Do Mozilla apps have access to the process manager?

So really I have 3 questions, but they are all pretty straightforward (for once): Can an add-on in Firefox see if there are multiple instances of Firefox/the firefox process running? Since the only ...
1
vote
2answers
329 views

So, who should daemonize? The script or the caller?

I'm always wondering who should do it. In Ruby, we have the Daemons library which allows Ruby scripts to daemonize themselves. And then, looking at God (a process monitoring tool, similar to monit) ...
0
votes
3answers
65 views

A process monitor based on periodic sql selects - does this exist or do I need to build it?

I need a simple tool to visualize the status of a series of processes (ETL processes, but that shouldn't matter). This process monitor need to be customizable with color coding for different status ...
0
votes
1answer
114 views

Scanning/Monitoring a specific process memory

A few days ago while playing a flash game I downloaded cheatengline just to spice up the game. Using cheatenginge I thought to myself that it would be fun to try to make something similar myself. ...
0
votes
2answers
86 views

Any tools to monitor processes and resources consumed of virtual machines?

Hi all, I need a tool that can retrieve information about used resources of each VM and their processes, I use KVM as hyper-visor I also need it to have a programming API I know it is a tough ...
0
votes
0answers
22 views

What would be good XML protocol for job progress monitoring?

We want to have an XML protocol to report the status and progress of multiple jobs running in parallel on server. The aim is to even use the general purpose clients to consume this XML. Currently I ...
0
votes
1answer
55 views

process creation

in the .net environment (C# language), how can I go about writing an application that can monitor when a process is created within the system, and when that process spawns other processes?
0
votes
2answers
57 views

Building a primitive debugger in Visual C++

I'd like to build a primitive debugger in Visual C++ that does few basic things: 1) Attaches to a running process. 2) Sets breakpoints in the applications. 3) Reads register values. How involved is ...