network-monitoring

BlackBerry Data Usage

浪尽此生 提交于 2019-12-01 10:29:21
Using the RIM APIs. is there an accurate way of collecting the amount of data coming in and out of a service provider (Not including WiFi/Bluetooth data). Unfortunately I have tried RadioInfo.getNumberOfPacketsReceived() and RadioInfo.getNumberOfPacketsSent() and they also include Wi-Fi usage, at least when routing through BlackBerry Infrastructure. Fermin Have you tried using RadioInfo.getNumberOfPacketsSent() and RadioInfo.getNumberOfPacketsReceived() to monitor data usage? 来源: https://stackoverflow.com/questions/722146/blackberry-data-usage

Checking what consumes AWS lambda

£可爱£侵袭症+ 提交于 2019-12-01 09:40:41
问题 I have my AWS lambda, lets call it Lambda-X. There are other lambdas, I don't know their names, that consumes my Lambda-X via API call. How do I determine the names/ip/identifier of lambdas that sending requests to my Lambda-X? 回答1: CloudWatch Metrics shows the number of invocations of each Lambda function. That will help you to determine which Lambda is being triggered the most frequently. If that's insufficient, then each Lambda function obviously has a unique name. You could modify your

BlackBerry Data Usage

喜欢而已 提交于 2019-12-01 09:26:10
问题 Using the RIM APIs. is there an accurate way of collecting the amount of data coming in and out of a service provider (Not including WiFi/Bluetooth data). 回答1: Unfortunately I have tried RadioInfo.getNumberOfPacketsReceived() and RadioInfo.getNumberOfPacketsSent() and they also include Wi-Fi usage, at least when routing through BlackBerry Infrastructure. 回答2: Have you tried using RadioInfo.getNumberOfPacketsSent() and RadioInfo.getNumberOfPacketsReceived() to monitor data usage? 来源: https:/

Extract GET URIs or their responses from Wireshark capture to separate file(s)

房东的猫 提交于 2019-11-28 11:48:15
Issue I use Wireshark to capture a HTTP video stream and I've use the following filter to filter out the relevant GET requests. http.request.uri contains "identifier" && http.request.method == "GET" && ip.addr == xxx.xxx.xxx.xxx Questions Is it possible to extract all get GET URLs to separate a .txt file? Or is possible to extract the raw response packets (without the header) which match the filter above to separate files so that I have a bunch of individual video files eventually? I hope I made myself clear enough ;-) Thank you mavam While this may be doable with Wireshark, it is orders of

How to monitor network calls made from iOS Simulator

微笑、不失礼 提交于 2019-11-28 02:56:34
I am trying to monitor calls from an app to my server just like Firebug does. I could not find a way to see that in iOS Simulator or in xCode. Is there a way to do that without sniffing all the traffic? If no, what tool would you suggest? Personally, I use Charles for that kind of stuff. When enabled, it will monitor every network request, displaying extended request details, including support for SSL and various request/reponse format, like JSON, etc... You can also configure it to sniff only requests to specific servers, not the whole traffic. It's commercial software, but there is a trial,

How can I access netstat-like Ethernet statistics from a Windows program

╄→尐↘猪︶ㄣ 提交于 2019-11-27 14:52:07
How can I access Ethernet statistics from C/C++ code like netstat -e ? Interface Statistics Received Sent Bytes 21010071 15425579 Unicast packets 95512 94166 Non-unicast packets 12510 7 Discards 0 0 Errors 0 3 Unknown protocols 0 A good place to start for network statistics would be the GetIpStatistics call in the Windows IPHelper functions. There are a couple of other approaches that are possibly more portable:- SNMP. Requires SNMP to be enabled on the computer, but can obviously be used to retrieve statistics for remote computers also. Pipe the output of 'netstat' into your application, and

Extract GET URIs or their responses from Wireshark capture to separate file(s)

泄露秘密 提交于 2019-11-27 06:27:55
问题 Issue I use Wireshark to capture a HTTP video stream and I've use the following filter to filter out the relevant GET requests. http.request.uri contains "identifier" && http.request.method == "GET" && ip.addr == xxx.xxx.xxx.xxx Questions Is it possible to extract all get GET URLs to separate a .txt file? Or is possible to extract the raw response packets (without the header) which match the filter above to separate files so that I have a bunch of individual video files eventually? I hope I

How can I access netstat-like Ethernet statistics from a Windows program

南楼画角 提交于 2019-11-26 16:56:22
问题 How can I access Ethernet statistics from C/C++ code like netstat -e ? Interface Statistics Received Sent Bytes 21010071 15425579 Unicast packets 95512 94166 Non-unicast packets 12510 7 Discards 0 0 Errors 0 3 Unknown protocols 0 回答1: A good place to start for network statistics would be the GetIpStatistics call in the Windows IPHelper functions. There are a couple of other approaches that are possibly more portable:- SNMP. Requires SNMP to be enabled on the computer, but can obviously be

Monitor a process's network usage?

时光毁灭记忆、已成空白 提交于 2019-11-26 08:19:21
问题 Is there a way in C# or C/C++ & Win32 to monitor a certain process\'s network usage (Without that application being built by you obviously)? I would like to monitor just 1 process for like an hour or so, then return the bytes used by only that process, such as limewire for example. Is it possible? I know netstat -e on windows will tell you total bytes sent/received, but that is for all processes. edit: If i can\'t return just one processes usage, how can i get the bytes sent/received by the