Measuring Path specific connection statistics #1832
Unanswered
sanjaybhat2004
asked this question in
Q&A
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, we currently have a picoquic connection, which has a client and server setup, via a multipath connection. We were interested in measuring data such as number of packets sent, number of bytes sent, over each path. For number of packets part, our first approach was to have a similar solution as given in picoquic_sample, so we printed out the data
cnx.path[i].pkt_ctx.send_sequence
. However, when we went through the qlog file, and filtered forpacket_sent
we found out that both the numbers did not match up.So our question is, 1) what is the reason behind them not matching, and which one should be preferred for data?
2) Where can we get statistics regarding amount of bytes sent via each path?
3) The above cases only deal with finding out the statistics in client, is there any way the server can the path statistics without the client having to explicitly find it out and send?
Beta Was this translation helpful? Give feedback.
All reactions