The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
38 views

Trigger probe-request on iOS

I am looking for way to trigger Wifi rediscover on iPhone. I would like to imitate going into the Wifi Settings but actually without doing this. Just wondering if there is any method in ...
0
votes
1answer
22 views

Use single psi(tomcat) probe to monitor multiple instances across different tomcat instances

I have multiple applications running on different ports (tomcat instances) All have the same CATALINA_HOME Currently I have to deploy and install psi probe in all the instances and separately ...
1
vote
0answers
37 views

iOS and Android wifi probe

i'd like to know if someone can explain me how IOS & Android work when they have wifi on & they are in standby mode. I have tried myself to do some tests but i get different results, for ...
3
votes
1answer
53 views

Enumerate the pages in a memory range

I'm using C++ on Windows under Visual Studio 2012. I have a start and end memory address and need to generate a list of page base addresses/handles between the two addresses. I considered the ...
0
votes
0answers
72 views

Is it possible to monitor 2 tomcat servers using psi-probe?

Is it possible to monitor more than one tomcat server using psi-probe? If not, is there any other open source tool for doing so? We deployed our web application in 6 different tomcat severs. We are ...
0
votes
1answer
117 views

How to see pool usage information using probe for Srping managed standalone Tomcat 7 pool

I use Srping managed standalone Tomcat 7 pool (tomcat-jdbc.jar) using the version 7.0.26. psi-probe 2.3.2 also is installed at Tomcat. I cannot see pool usage in probe (on "JDBC USAGE" column) and any ...
3
votes
0answers
270 views

Update Windows Azure Endpoint with load balancer probe settings

I am trying to update the probe settings for a load balanced endpoint in windows azure but facing "Update-AzureVM : Failed: The server encountered an internal error. Please retry the request." ...
1
vote
1answer
42 views

How to monitor/profile a running .net assembly

We have a .net based windows service thats always running. I would like to make a .net win application that will probe this running .net process and tell me which method is currently executing. I ...
0
votes
1answer
60 views

Cloudoundry: gwt app,Memory usage steadily increases as per vmc but not in memory profiler

I deployed a gwt app(tomcat7) (file upload and displaying contents in table) . I used probe to checkout memory usage and the issue is,as per vmc i.e cloudfoundry console,memory never goes ...
1
vote
2answers
73 views

How to list current active systemtap probes

Could anyone please tell me how to list current active systemtap probes in the system? I guess there might be some infomation from the "/proc". Thanks and regards!
1
vote
0answers
167 views

how to reload context of the application using JavaMelody?

I have been using Probe to monitor tomcat server and web application.From Probe I can reload the context from the UI,clicking on refresh icon. But I am not getting from where to reload context in ...
2
votes
0answers
618 views

Android WifiManager.startScan() - active or passive scanning?

A couple of posts on SO including this one imply that WifiManager.startScan() only scans passively, waiting for APs to send out beacons, instead of actively sending out probe requests. Well, I ...
0
votes
0answers
756 views

How to change the memory limits of Tomcat6 (MacPorts install)? (-Xmx ignored???)

I've tried changing the memory limits using the -Xmx flag in the catalina.sh, as I've used in the past for Linux installs, but when I access psi-probe (previously lambda probe) It claims I have a ...
1
vote
2answers
150 views

Postgres monitoring with Intermapper

Does someone know of an Intermapper probe to test if a SQL database is alive and kick'n? Plan B: Does someone know the basic steps with are necessary to program such a probe?
0
votes
1answer
189 views

Meeting assembly dependencies in a MEF environment

I have an application in which I am employing MEF to dynamically load extension assemblies. One assembly is a domain layer, the second is a view. The domain assembly load and works as expected. The ...
1
vote
0answers
94 views

Modifying ProbeMatch response in wcf service

I'm currently implementing a service using wcf (.net 4.0), and am attempting to get discovery working correctly. The issue I'm having is that my service resides on one namespace (device/wsdl), yet for ...
3
votes
1answer
2k views

Linux USB device driver not getting probed

I'm working on a device driver for Linux. It's a USB pen tablet. The problem is that the driver's probe callback never gets called. dmesg just shows: generic-usb: probe of 0003:099A:2620.000F failed ...
1
vote
2answers
186 views

inspect delphi control object without modify source code

I have an Stock program which developed by Delphi, I want a tools which can read the data from the stock program, for example, the stock price in Delphi grid object. The Stock program under test is ...
0
votes
1answer
378 views

Tomcat6, Lambda Probe, insane amount of sessions from “unknown”

I'm running an e-Commerce site which "crashes" regularily. Usually, I'm seeing an insane number of sessions open (600-900 on normal days, 5000-20000 on crashes). I would like to determine where these ...
0
votes
1answer
170 views

Network probing on IPv6

I am familiar using IPv4 broadcast of UDP packets as a technique for probing the network looking for servers running a given service. I.E. the broadcast packet is sent out on a given port and the ...
2
votes
3answers
235 views

Which (OS X) dtrace probe fires when a page is faulted in from disk?

I'm writing up a document about page faulting and am trying to get some concrete numbers to work with, so I wrote up a simple program that reads 12*1024*1024 bytes of data. Easy: int main() { ...
0
votes
2answers
2k views

linux usb driver: probing already plugged devices

im writing a Usb driver and i have an issue. when i insmod the driver with the device already plugged in before, the probe function is not called. it is only called after i disconnect the device and ...
1
vote
1answer
225 views

Labjack Humidity Probe Example

I realize this might be a long shot, but does anyone have an example of using the EI-1050 probe with a Labjack controller in something C-related? I'm currently using a Labjack U12 if it matters. It ...
0
votes
1answer
940 views

how to Compute the average probe length for success and failure - Linear probe (Hash Tables)

I'm doing an assignment for my Data Structures class. we were asked to to study linear probing with load factors of .1, .2 , .3, ...., and .9. The formula for testing is: The average probe length ...
1
vote
3answers
1k views

Linux USB driver probe not called if device already plugged

If I use a modified usb skeleton driver on Linux and I insmod the module with the USB device already plugged in, the probe function doesn't get called. I need to unplug and replug the device in order ...