Monitor is component for Monitoring. It is the act of looking on the processes or systems for performance, supervision and surveillance.
3
votes
4answers
3k views
How to check my server's upload and download speed? [closed]
I bought a server and I need to check it's internet connection (speed).
Is there an easy way to do that?
I googled but I couldn't find anything...
I did this:
<?php
$link = ...
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, ...
0
votes
1answer
43 views
Monitor Java Application to get list of accessed files
i am working with a complex application and like to know which files it creates and accesses. Is there a way to monitor the application or the jvm it runs with to get this information?
EDIT: i am ...
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
184 views
C++ Process Monitor
I'm trying to create a process monitor in linux that will tell me things about a process (whether it's running, how long it's been running... etc) in C++. Is there an easy way to do this?
1
vote
0answers
101 views
Wait on Outlook to load mailbox before continuing PowerShell
I'm looking at components of a script using PowerShell to export MailBoxes that are accessible through Outlook but not Exchange. This needs to be done from a centralized location, so the MailBoxes ...
2
votes
1answer
115 views
Create an app that will scan barcode in a loop until the device's battery level is depleted
I need to create an app that will scan a barcode continuously until the battery level of the device is low to the point where it turns off. I need to test how long the battery will last while scanning ...
1
vote
1answer
64 views
How to monitor performance information in cloud computing
I want to monitor performance information in cloud computing, such as CPU utilization, memory utilization. It's easy to get performance information in a single machine, but how to aggregate these ...
0
votes
2answers
279 views
linux file access monitor,with inotify?
i am searching a tool in linux for monitoring file.
for example, i need know what happend to a file. Like it be created,rewrite,read and so on.
i know the i can use inotify to achieve this. but i ...
-2
votes
1answer
139 views
Benchmarking and Monitoring in Python
I am trying to run a benchmark and monitor the cpu frequency while the benchmark is running. What would be the best method to do this in the smallest footprint possible?
Basicly, I have a benchmark I ...
0
votes
0answers
78 views
Resizing/Blocking out 2nd monitor in Windows Desktop Sharing API (using SetDesktopSharedRect)
I've been using the Windows Desktop Sharing API, as found here
I understand there is no out-right method to specify the scaling of WDS's viewer, besides setting SmartSize on or off.
I am trying to ...
1
vote
0answers
406 views
How can I get the Resource Monitor values in .NET?
I need to get some of the values that are in the windows 7 resource monitor. In particular, the memory usage, cpu and bandwidth per process. I've looked into the PerformanceCounter class and I don't ...
2
votes
2answers
151 views
Why does Threading::Monitor::TryEnter succeed more than once?
I'm trying to secure some multi-threaded code and am in the process of adding unit tests to prove I've fixed corruption we'd previously been seeing.
In doing so though I've come across some ...
0
votes
1answer
131 views
pausing and stopping threads
I have the following code which is working but it is very dirty. Actually the code is just fine except the part I added: a pause and a stop button. I'm new to c# so any help would be apreciated.
...
0
votes
1answer
270 views
Python watchdog for another Python process technique?
I have a realtime data grabber that runs indefinitely, grabbing data over HTTP and putting it in a MySQL database every few seconds.
In my program, I have a while True loop that spawns workers ...
0
votes
0answers
64 views
how to monitor or detect the UI operations in android
I am struggling to find a solution for the project.
The project is used to record the operations in mobile and then play back.
the steps are:
1. connect the mobile to pc via usb/wifi
2. operation on ...
0
votes
1answer
142 views
C# monitors (from a Java developer POV)
I'm working on the port of a C#/directx game client to Java, so that I can learn some C# (as I am completely profane on it) and in the meanwhile improve my knowledge on a java opengl engine.
When I ...
0
votes
0answers
307 views
How can I monitor total memory usage or a process, including swap?
From searching online, it seems that using top is not a good way and that a good solution would involve referencing /proc/pid/smaps. Is there a decent alternative?
If not -- what do all the fields ...
1
vote
1answer
720 views
Is Java capable of process monitoring?
Is it possible to write an application in Java that runs in the tray and when a certain application is launched, it can detect it? I want to do this for certain programs to find out how long I use ...
0
votes
0answers
150 views
Multiple monitors & Multiple GPU's? [closed]
Not sure what kind of questions I can ask here, but I'll give it a try.
If I want to connect 4 monitors to my computer, and my GPU only have to ports. Can I then buy a cheap 2'nd GPU to get more ...
0
votes
1answer
205 views
monitor websphere with loadrunner 11.0
I want to monitor the websphere 6.1 with JDK 1.5 using loadrunner. since loadrunner V8 only support the JDK1.4, so I have to setup loadrunner V11.
but after competed installation, and open ...
0
votes
1answer
231 views
how to monitor the subprocess realtime
I am a newbie to python.
I am working on a project currently.
by clicking a button A, the command "adb shell getevent" will be executed in one subprocess.
the result will be write to a file.
There ...
0
votes
0answers
349 views
Android: How to monitor network traffic - START / END?
I am looking for solution, which will allow me to know, when some data start/end flowing over mobile connection (not wifi, only 2G/3G/etc.).
Example:
User will start any app and this app will start ...
0
votes
1answer
275 views
Monitor transport,network and link layer buffers/queue (loaded, empty, full and drop) in Linux
As far as i know, these are buffer/queues for UDP in Linux (correct me if im wrong)
UDP Tx : [sendto] UDP socket buffer(getsockopt(SO_SNDBUF)) -> interface socket buf() -> driver ring buffer
...
2
votes
1answer
738 views
WPF Window size have monitor size
I am new in WPF and I want to make a window that has max sizes (monitor sizes).
The Window's XAML code is this:
<Window x:Class="WpfApplication1.Stop"
...
0
votes
1answer
70 views
Debug/Handle Java/Restlet application SEGFAULT
I have a application service use Restlet framework. But after running 1-2 days. I caught it stopped unexpected. Checked the application directory, I found a log file said:
A fatal error has been ...
0
votes
1answer
106 views
Is there a way to exclude certain interfaces/address from dbus-monitor output?
From the manpage of the dbus-monitor command, I know that I can use some command line arguments like dbus-monitor "type=..., sender=..., interface=..." to specify the type/sender/interface etc I am ...
0
votes
1answer
164 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
1answer
81 views
Creating fault tolerant system - Use data file to reload save data?
EDIT - The implementation Language is Java.
I want to make a simple fault tolerant system.
Object A - This object contains the decision logic for the system.
Object B - This object will be used ...
2
votes
1answer
191 views
Is there a way to use cherrypy's Monitor to perform a single task and then stop?
I have a web application that requests a report that takes more than 10 minutes to run. Apart from improving that performance, I would for now prefer to set up a thread to run the report and mail it ...
0
votes
1answer
149 views
Monitor WCF Service via WPF app
I am designing a WCF service that will serve clients that request things like 'GetProduct' and 'UpdateProduct'. In addition, there will be another service that the clients will subscribe to that will ...
1
vote
1answer
678 views
Looking for a reliable mapping of Forms.Screen.DeviceName to Monitor EDID info
I'm developing an application which will display information derived from the EDID blocks (monitor model, ID, S/N, etc.) on a dialog on the corresponding monitor.
This code works for finding the EDID ...
0
votes
0answers
67 views
how can I monitor my FTP server [closed]
I have installed the FTP server in my PC and I have connected with Filezella client,but when I try to monitor the FTP server fonctionality by taping the snmpwalk command ,I don't have any result ...
0
votes
1answer
160 views
Reference Monitor Vs. System Call Wrapper
I am trying to clearly distinguish both terms/techniques according to their properties and uses.
I am mostly interested in the difference between them.
I know that they work the same way by ...
0
votes
2answers
823 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
2answers
151 views
do condition variables have queues?
I am implementing a condition variable's wait operation. I have a struct for my condition variable. So far, my struct has a monitor, a queue, and a spinlock. But I am not sure if a condition variable ...
1
vote
1answer
224 views
how to monitor a device with SNMP
I'm given a task to write some code to notify administrators if the device sends trap. Also I'd like to be able to check upon the device as well.
I'm not so sure where to begin. Is there a test ...
1
vote
2answers
314 views
Best way to view/monitor TCP/IP sockets from IE, Firefox, and/or Chrome?
I'm trying to write a sort-of web proxy but to make sure everything is working properly, I want to monitor an existing proxy server to see when the browser connects, disconnects, etc.
Are there any ...
1
vote
1answer
290 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 ...
2
votes
1answer
160 views
thread.join trigger thread.wait(), but why it doesn't need thread monitor?
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
TimeUnit.SECONDS.sleep(1000);
} catch (InterruptedException ...
5
votes
3answers
2k views
What's the meaning for object's monitor in java? Why use this word?
When reading articles about java thread, I often notice the expression: "current thread is the owner of this object's monitor.". I catch the meaning: the thread gets the right to operate on the ...
0
votes
1answer
86 views
Multithreading issue on collection
I have an issue with threading in my application.
As often with threading issue, it doesnt occur all the time.
Sometimes a collectionChanged exception occurs on this code :
SyncLock _padLock
...
0
votes
3answers
265 views
How to monitor user click on an url and extract the url?
I'm doing a project which can detect phishing website. I.e. when a user tap on a link when they browsing a webpage in a browser, the link will be check if it is a phishing webpage.
However, I do not ...
1
vote
1answer
68 views
Setting state of a gen_server type application
I am trying to find out whether it is possible to start a gen_server with a given state.
I would like to be able to set up a monitor/supervisor that restarts the server with its last valid state when ...
0
votes
1answer
69 views
Store location information from a tweet
I want to download tweets to my own database. I want to give the #subject in the script and then download the latest tweets. I want to do this with php
i can only find websites where you can monitor ...
0
votes
3answers
2k views
How to start linux with gui without monitor? [closed]
I met a problem.
I had a server which is installed redhat enterprise 5.5.
And one Qt program was running on this server.
So what I should do is to turn on my server, the server will start automaticly ...
0
votes
4answers
336 views
Qt or PyQt - check when file is used by another process. Wait until finish copy
Good morning,
What is the best strategy for check when a big file o big directory has finished to copy?
I want wait until a file has finish fully to copy. Is there a code example in q
I'm working on ...
1
vote
1answer
143 views
Display server performance information in Asp.net website
I want to display the performance of the windows server 2008 (Memory Usage, CPU usage, Disk usage, Network Usage) in the asp.net website chart.
How to implement to display these information in ...
2
votes
1answer
90 views
Efficient approach to multithreaded set difference
I have a finite set of consumer threads each consuming a job. Once they process the job, they have a list of subjobs that were listed in the consumed job. I need to add the subjobs from that list that ...
0
votes
1answer
272 views
How to monitor the HDFS replication progress of the cluster?
Is there a specific log for the replication ?
Is there a command to use to view the current status, what it is doing, copy speed, etc. ?