qlog
qlog copied to clipboard
The IETF I-D documents for the qlog format
What is the [media-type](https://www.iana.org/assignments/media-types/media-types.xhtml) of the qlog files?
I recently came across this interesting project that tags traffic in pcaps for Machine Learning purposes: https://github.com/nprint/pcapml This general concept of keeping traffic traces and metadata describing that data in...
Currently, we have only a single version field in `qlog_version`. This is somewhat inflexible, as it for example doesn't allow indicating updated versions of event definitions for individual protocols (say...
The [`frames_processed`](https://tools.ietf.org/html/draft-marx-qlog-event-definitions-quic-h3-02#section-5.3.14) event fails to capture the sending and receiving of frames since it only specified a single `packet_number` field. According to the [transport rfc](https://tools.ietf.org/html/draft-ietf-quic-transport-32#section-12.3): > Each endpoint maintains a...
Prior to draft-02, we had separate category and type fields. The idea was that this would be easier to filter on (e.g., show me only events in the `transport` category)....
Currently, `protocol_type` is a single string which typically has the value "QUIC_HTTP3". However, this doesn't particularly scale to aggregated logs down the line (e.g., in #139 we can have a...
I didn't think of this back when we defined the triggers for `connection_closed`, but this is happening **a lot** in production: When dialing a new peer, libp2p races connections to...
With several extensions to QUIC and HTTP/3 being developed, we should have some way of defining qlog events for them. Given that most of these extensions are not RFC's in...
The [spindump project](https://github.com/EricssonResearch/spindump) provides (aggregated) protocol measurements (e.g., RTT, loss, connection count, etc.) from middleboxes. They would like to use qlog as an output format and have [prototyped](https://github.com/EricssonResearch/spindump/blob/master/src/spindump_event_printer_qlog.c) what that...
With many iterations of my qlog implementation running in production now, it would be helpful if there was a way to tell which version of my code generated any particular...