monitoring

Distributed Monitoring Service using C# .NET 3.5 [closed]

梦想的初衷 提交于 2019-12-03 14:15:11
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . Let's say for example you have 5 different companies using the same platform (Windows based) all wrote their own web services, what technique using C# and .Net 3.5 would you recommend using to monitor all their different web services? My intention is to build an application that

Simple Server Monitoring with Java [closed]

无人久伴 提交于 2019-12-03 12:11:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I'm trying to find a solution that allows me to monitor resource consumption of a server. Preferably, the metrics I'm wanting to obtain are network utilisation IO, and if possible CPU usage/load average and disk IO. The only other requirement I have is that this information be obtainable by Java so it can be

How to find the cause of a 100% CPU usage on an iPhone App

泄露秘密 提交于 2019-12-03 11:34:04
I've diagnosed a strange behavior in an app : after 10 minutes or so, the CPU usage goes to 100%. There's no leak in the app, and it happens while the app is doing nothing. I can profile this with instruments using the "Time Profiler", but is there a way to find what the actual cause is ? When profiling with Instruments (Time Profiler), look to see what method is using the majority of CPU time. Trace the calls back to see why. 来源: https://stackoverflow.com/questions/7388453/how-to-find-the-cause-of-a-100-cpu-usage-on-an-iphone-app

What's the best way to monitor your REST API? [closed]

大兔子大兔子 提交于 2019-12-03 10:33:13
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . I've created an API based on the RESTful pattern and I was wondering what's the best way to monitor it? Can I somehow gather statistics on each request and how deep could I monitor the requests? Also, could it be done by using open source software (maybe building my own monitoring service) or do I need to buy third party software? If it could be achieved by using open source software

App to monitor PostgreSQL queries in real time?

扶醉桌前 提交于 2019-12-03 08:27:01
问题 I'd like to monitor the queries getting sent to my database from an application. To that end, I've found pg_stat_activity , but more often then not, the rows which are returned read " in transaction". I'm either doing something wrong, am not fast enough to see the queries come through, am confused, or all of the above! Can someone recommend the most idiot-proof way to monitor queries running against PostgreSQL? I'd prefer some sort of easy-to-use UI based solution (example: SQL Server's

Monitoring API calls [duplicate]

[亡魂溺海] 提交于 2019-12-03 08:18:56
This question already has an answer here: Hook processes 5 answers I am doing some reverse engineering and want to know which APIs are called from the executable. I am mostly interested in the APIs called on a particular Windows system DLL. I guess one way to do that is to get all APIs exposed from the DLL using dumpbin and put breakpoints on all those from Windbg. Any other approach? This seems like lot of time if I need to monitor many system DLLs. BTW, I am working on Windows XP and want to monitor one executable which calls some Windows system DLL functions. Agnel Kurian http://www.rohitab

Monitoring Celery, what should I use? [closed]

余生颓废 提交于 2019-12-03 07:50:59
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I'm using Django, Celery, and Django-Celery. I'd like to monitor the state/results of my tasks, but I'm a little confused on how to do that. Do I use ./manage.py celeryev , ./manage.py celerymon , ./manage.py celerycam ? Do I run sudo /etc/init.d/celeryevcam start ? 回答1: Run: ./manage.py celeryd -E ./manage.py

How to create a simple c# http monitor/blocker?

末鹿安然 提交于 2019-12-03 05:24:00
问题 I was reading that question (How to create a simple proxy in C#?) that is near of my wishes. I simply want develop a c# app that, by example, monitors Firefox, IE, etc and logs all navigated pages. Depending of the visited page, I want to block the site (like a parental filter). Code snippets/samples are good, but if you can just tell me some direction of that classes to use I will be grateful. :-) 回答1: I’ll answer appropriate for a parent: ala "Parental Controls" You can start out with a

Remote monitoring with visualvm and JMX

Deadly 提交于 2019-12-03 04:23:00
问题 I would like to monitor a remotely running java (spring boot) application with jvisualvm (or jconsole). When running locally, I can see the managed beans in both jvisualvm and jconsole. When running remotely I cannot connect. I tried it with several different java processes (e.g. with spring xd). Looking for answers here on SO and on Google did not help. These are my JAVA_OPTS (on the remote host): $ echo $JAVA_OPTS -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9010 -Dcom

Stats/Monitor/Inspector for beanstalkd

青春壹個敷衍的年華 提交于 2019-12-03 03:44:08
问题 Does anyone know of an app that can monitor a beanstalkd queue? I'm looking for something that shows stats on tubes and jobs, and allows you to inspect the details. I'm not really picky about language/platform, just want to know if there's something out there before I write my own. 回答1: All of these and at least two others are listed on the beanstalkd wiki tools page: https://github.com/kr/beanstalkd/wiki/Tools The best ones are: http://github.com/ptrofimov/beanstalk_console — a web admin