Questions tagged [network-traffic]
338 questions
185
votes
3 answers
EC2 instance types's exact network performance?
I cannot find exact network performance details for different EC2 instance types on Amazon. Instead, they are only saying:
High
Moderate
Low
What does this even mean? I especially want to know the exact amount of Traffic-OUT on each instance…

シリウス
- 1,931
- 3
- 14
- 8
35
votes
3 answers
What % of traffic is network overhead on top of HTTP/S requests
If we:
1) Count bytes/bits at the network adapter level (raw # of bits through the NIC) and,
2) Count bytes in all HTTP/S request/responses.
Assuming only HTTP/S traffic is on the box, and assuming a statistically relevant amount of "typical" web…

David Parks
- 30,789
- 47
- 185
- 328
28
votes
1 answer
How can I use IE8 Developer Tools to inspect network traffic?
How can I use IE8 Developer Tools to inspect network traffic?
Specifics:
I need to test if files have loaded or if they have loaded slow. In Firefox/Firebug I can do this by using the NET tab.
Restrictions:
I cannot install additional software, so…

Xonatron
- 15,622
- 30
- 70
- 84
21
votes
2 answers
How to get programmatically the data usage limit set by user on Android OS configuration?
User can define at Data Usage screen a limite and/or a warning limit for mobile data usage. So how can I get this information by code?
Screen of Data Usage configuration of native OS.
I wanna the limit value and warning value.
I've already tried…

Idemax
- 2,712
- 6
- 33
- 66
20
votes
6 answers
How to calculate HttpWebRequest spent outbound and inbound internet traffic
I have the below function to fetch a page. My question is i want to calculate how much internet connection is spent
Both inbound (download) and outbound traffic (sent)
How can i do that ? Thank you
My function
public static string…

Furkan Gözükara
- 22,964
- 77
- 205
- 342
17
votes
1 answer
Where's the Network Traffic Tool in Visual Studio 2019
According to this question (How to view network traffic in Visual Studio), in VS 2017, there was a network tool where you can see traffic.
I can't seem to find it on VS 2019. Has it been removed or moved to a different location?
I am using VS2019…

Diskdrive
- 18,107
- 27
- 101
- 167
15
votes
1 answer
How to capture the network traffic using python
I am using python and attempting to scrape the HTTP(s) traffic between my computer and a site, which would include all incoming and outgoing requests,responses, such as images and external calls, etc.
I have attempted to find the network traffic…

maudulus
- 10,627
- 10
- 78
- 117
15
votes
4 answers
android statistic 3g traffic for each APP, how?
For statistic network traffic per APP, what I'm using now is Android TrafficStats
That I can get result like following :
Youtube 50.30 MBytes
Facebook 21.39 MBytes
Google Play 103.38 MBytes
(and more...)
As I know, the "Android Trafficstats" just…

RRTW
- 3,160
- 1
- 35
- 54
14
votes
3 answers
Why can't Fiddler see my web service traffic?
I had a problem that Fiddler wasn't showing my web service calls made from my application (running locally). I found and solved my problem.
So my question is not how, but why does Fiddler not show web service traffic? I have a very limited…

Chris
- 2,630
- 3
- 31
- 58
13
votes
2 answers
Why tc cannot do ingress shaping? Does ingress shaping make sense?
In my work, I found tc can do egress shaping, and can only do ingress policing. I wonder that why tc doesn't implement ingress shaping?
Code sample:
#ingress
tc qdisc add dev eth0 handle ffff: ingress
tc filter add dev eth0 parent ffff: protocol ip…

damn_c
- 2,442
- 2
- 15
- 17
12
votes
1 answer
How to get the correct number of bytes sent and received in TrafficStats?
My app is trying to count the number of bytes send and received over WiFi/LAN and mobile data connections. To do that, I get the values of TrafficStats counters at one point in time and subtract that from its values the next time I check.
// get…

Matthew Quiros
- 13,385
- 12
- 87
- 132
11
votes
3 answers
Are there any programs that can simulate an unstable network connection?
We need to simulate an unstable network connection to try to debug some connectivity issues in our server/client application and I was wondering if there are any programs out there that can simulate those conditions such as on a faint wireless…

Davy8
- 30,868
- 25
- 115
- 173
10
votes
1 answer
How to get the network traffic stat for video streaming applications on Android?
I am trying to write a network traffic monitor application myself. I have been using the TrafficStat to get per app network traffic stat. But for video applications like YouTube, the streamed data cannot be captured by TrafficStat. Instead, the…

user1040786
- 251
- 2
- 10
9
votes
2 answers
how to count 3g traffic in android mobile?
What I want to do is to count 3G traffic and WiFi traffic respectively. Now I know how to do with WiFi. Below is the source code for WiFi. By this way I can count WiFi traffic for all the android phones of all manufactures. But I haven't found a…

user924829
- 111
- 1
- 4
9
votes
3 answers
How to capture query string parameters from network tab programmatically
I am trying to capture query string parameters for analytics purpose using javascript. I did some searching and found that BMP can be used to do it but i am unable to find ample examples to implement. Could anyone point me in the right…

human
- 637
- 4
- 15
- 41