<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.0.2) -->
<?rfc docindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-qlog-main-schema-05" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.14.2 -->
  <front>
    <title>Main logging schema for qlog</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-qlog-main-schema-05"/>
    <author initials="R." surname="Marx" fullname="Robin Marx" role="editor">
      <organization>Akamai</organization>
      <address>
        <email>rmarx@akamai.com</email>
      </address>
    </author>
    <author initials="L." surname="Niccolini" fullname="Luca Niccolini" role="editor">
      <organization>Meta</organization>
      <address>
        <email>lniccolini@meta.com</email>
      </address>
    </author>
    <author initials="M." surname="Seemann" fullname="Marten Seemann" role="editor">
      <organization>Protocol Labs</organization>
      <address>
        <email>marten@protocol.ai</email>
      </address>
    </author>
    <author initials="L." surname="Pardue" fullname="Lucas Pardue" role="editor">
      <organization>Cloudflare</organization>
      <address>
        <email>lucaspardue.24.7@gmail.com</email>
      </address>
    </author>
    <date year="2023" month="February" day="13"/>
    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document describes a high-level schema for a standardized logging format
called qlog.  This format allows easy sharing of data and the creation of reusable
visualization and debugging tools. The high-level schema in this document is
intended to be protocol-agnostic. Separate documents specify how the format should
be used for specific protocol data. The schema is also format-agnostic, and can be
represented in for example JSON, csv or protobuf.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>There is currently a lack of an easily usable, standardized endpoint logging
format. Especially for the use case of debugging and evaluating modern Web
protocols and their performance, it is often difficult to obtain structured logs
that provide adequate information for tasks like problem root cause analysis.</t>
      <t>This document aims to provide a high-level schema and harness that describes the
general layout of an easily usable, shareable, aggregatable and structured logging
format. This high-level schema is protocol agnostic, with logging entries for
specific protocols and use cases being defined in other documents (see for example
<xref target="QLOG-QUIC"/> for QUIC and <xref target="QLOG-H3"/> for HTTP/3 and QPACK-related event
definitions).</t>
      <t>The goal of this high-level schema is to provide amenities and default
characteristics that each logging file should contain (or should be able to
contain), such that generic and reusable toolsets can be created that can deal
with logs from a variety of different protocols and use cases.</t>
      <t>As such, this document contains concepts such as versioning, metadata inclusion,
log aggregation, event grouping and log file size reduction techniques.</t>
      <t>The qlog schema can be serialized in many ways (e.g., JSON, CBOR, protobuf,
etc). This document describes only how to employ <xref target="JSON"/>, its subset
<xref target="I-JSON"/>, and its streamable derivative
<xref target="JSON-Text-Sequences"/>.</t>
      <ul empty="true">
        <li>
          <t>Note to RFC editor: Please remove the follow paragraphs in this section before
publication.</t>
        </li>
      </ul>
      <t>Feedback and discussion are welcome at
<eref target="https://github.com/quicwg/qlog">https://github.com/quicwg/qlog</eref>. Readers are
advised to refer to the "editor's draft" at that URL for an up-to-date version
of this document.</t>
      <t>Concrete examples of integrations of this schema in
various programming languages can be found at
<eref target="https://github.com/quiclog/qlog/">https://github.com/quiclog/qlog/</eref>.</t>
      <section anchor="data_types">
        <name>Notational Conventions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <section anchor="schema-definition">
          <name>Schema definition</name>
          <t>To define events and data structures, all qlog documents use the Concise
Data Definition Language <xref target="CDDL"/>. This document uses the basic
syntax, the specific <tt>text</tt>, <tt>uint</tt>, <tt>float32</tt>, <tt>float64</tt>, <tt>bool</tt>, and
<tt>any</tt> types, as well as the <tt>.default</tt>, <tt>.size</tt>, and <tt>.regexp</tt> control
operators, the <tt>~</tt> unwrapping operator, and the <tt>$</tt> extension point
syntax from <xref target="CDDL"/>.</t>
          <t>Additionally, this document defines the following custom types for
clarity:</t>
          <figure anchor="cddl-custom-types-def">
            <name>Additional CDDL type definitions</name>
            <sourcecode type="cddl"><![CDATA[
; CDDL's uint is defined as being 64-bit in size
; but for many protocol fields we want to be more restrictive
; and explicit
uint8 = uint .size 1
uint16 = uint .size 2
uint32 = uint .size 4
uint64 = uint .size 8

; an even-length lowercase string of hexadecimally encoded bytes
; examples: 82dc, 027339, 4cdbfd9bf0
; this is needed because the default CDDL binary string (bytes/bstr)
; is only CBOR and not JSON compatible
hexstring = text .regexp "([0-9a-f]{2})*"
]]></sourcecode>
          </figure>
          <t>All timestamps and time-related values (e.g., offsets) in qlog are
logged as <tt>float64</tt> in the millisecond resolution.</t>
          <t>Other qlog documents can define their own CDDL-compatible (struct) types
(e.g., separately for each Packet type that a protocol supports).</t>
          <ul empty="true">
            <li>
              <t>Note to RFC editor: Please remove the following text in this section before
publication.</t>
            </li>
          </ul>
          <t>The main general CDDL syntax conventions in this document a reader
should be aware of for easy reading comprehension are:</t>
          <ul spacing="normal">
            <li>
              <tt>? obj</tt> : this object is optional</li>
            <li>
              <tt>TypeName1 / TypeName2</tt> : a union of these two types (object can be either type 1 OR
type 2)</li>
            <li>
              <tt>obj: TypeName</tt> : this object has this concrete type</li>
            <li>
              <tt>obj: [* TypeName]</tt> : this object is an array of this type with
minimum size of 0 elements</li>
            <li>
              <tt>obj: [+ TypeName]</tt> : this object is an array of this type with
minimum size of 1 element</li>
            <li>
              <tt>TypeName = ...</tt> : defines a new type</li>
            <li>
              <tt>EnumName = "entry1" / "entry2" / entry3 / ...</tt>: defines an enum</li>
            <li>
              <tt>StructName = { ... }</tt> : defines a new struct type</li>
            <li>
              <tt>;</tt> : single-line comment</li>
            <li>
              <tt>* text =&gt; any</tt> : special syntax to indicate 0 or more fields that
have a string key that maps to any value. Used to indicate a generic
JSON object.</li>
          </ul>
          <t>All timestamps and time-related values (e.g., offsets) in qlog are
logged as <tt>float64</tt> in the millisecond resolution.</t>
          <t>Other qlog documents can define their own CDDL-compatible (struct) types
(e.g., separately for each Packet type that a protocol supports).</t>
        </section>
        <section anchor="serialization-examples">
          <name>Serialization examples</name>
          <t>Serialization examples in this document use JSON (<xref target="JSON"/>) unless
otherwise indicated.</t>
        </section>
      </section>
    </section>
    <section anchor="design-goals">
      <name>Design goals</name>
      <t>The main tenets for the qlog schema design are:</t>
      <ul spacing="normal">
        <li>Streamable, event-based logging</li>
        <li>A flexible format that can reduce log producer overhead, at the cost of
increased complexity for consumers (e.g. tools)</li>
        <li>Extensible and pragmatic</li>
        <li>Aggregation and transformation friendly (e.g., the top-level element
for the non-streaming format is a container for individual traces,
group_ids can be used to tag events to a particular context)</li>
        <li>Metadata is stored together with event data</li>
      </ul>
    </section>
    <section anchor="top-level">
      <name>The high level qlog schema</name>
      <t>A qlog file should be able to contain several individual traces and logs from
multiple vantage points that are in some way related. To that end, the top-level
element in the qlog schema defines only a small set of "header" fields and an
array of component traces. For this document, the required "qlog_version" field
<bcp14>MUST</bcp14> have a value of "0.3".</t>
      <dl>
        <dt>Note:</dt>
        <dd>
          <t>there have been several previously broadly deployed qlog versions based on older
drafts of this document (see draft-marx-qlog-main-schema). The old values for the
"qlog_version" field were "draft-00", "draft-01" and "draft-02". When qlog was
moved to the QUIC working group, we decided to switch to a new versioning scheme
which is independent of individual draft document numbers. However, we did start
from 0.3, as conceptually 0.0, 0.1 and 0.2 can map to draft-00, draft-01 and
draft-02.</t>
        </dd>
      </dl>
      <t>As qlog can be serialized in a variety of ways, the "qlog_format" field is used to
indicate which serialization option was chosen. Its value <bcp14>MUST</bcp14> either be one of
the options defined in this document (e.g., <xref target="concrete-formats"/>) or the field
must be omitted entirely, in which case it assumes the default value of "JSON".</t>
      <t>In order to make it easier to parse and identify qlog files and their
serialization format, the "qlog_version" and "qlog_format" fields and their values
<bcp14>SHOULD</bcp14> be in the first 256 characters/bytes of the resulting log file.</t>
      <t>An example of the qlog file's top-level structure is shown in <xref target="qlog-file-def"/>.</t>
      <t>Definition:</t>
      <figure anchor="qlog-file-def">
        <name>QlogFile definition</name>
        <sourcecode type="cddl"><![CDATA[
QlogFile = {
    qlog_version: text
    ? qlog_format: text .default "JSON"
    ? title: text
    ? description: text
    ? summary: Summary
    ? traces: [+ Trace / TraceError]
}
]]></sourcecode>
      </figure>
      <t>JSON serialization example:</t>
      <figure anchor="qlog-file-ex">
        <name>QlogFile example</name>
        <artwork><![CDATA[
{
    "qlog_version": "0.3",
    "qlog_format": "JSON",
    "title": "Name of this particular qlog file (short)",
    "description": "Description for this group of traces (long)",
    "summary": {
        ...
    },
    "traces": [...]
}
]]></artwork>
      </figure>
      <section anchor="summary">
        <name>Summary</name>
        <t>In a real-life deployment with a large amount of generated logs, it can be useful
to sort and filter logs based on some basic summarized or aggregated data (e.g.,
log length, packet loss rate, log location, presence of error events, ...). The
summary field (if present) <bcp14>SHOULD</bcp14> be on top of the qlog file, as this allows for
the file to be processed in a streaming fashion (i.e., the implementation could
just read up to and including the summary field and then only load the full logs
that are deemed interesting by the user).</t>
        <t>As the summary field is highly deployment-specific, this document does not specify
any default fields or their semantics. Some examples of potential entries are
shown in <xref target="summary"/>.</t>
        <t>Definition:</t>
        <figure anchor="summary-def">
          <name>Summary definition</name>
          <sourcecode type="cddl"><![CDATA[
Summary = {
    ; summary can contain any type of custom information
    ; text here doesn't mean the type text,
    ; but the fact that keys/names in the objects are strings
    * text => any
}
]]></sourcecode>
        </figure>
        <t>JSON serialization example:</t>
        <figure anchor="summary-ex">
          <name>Summary example</name>
          <artwork><![CDATA[
{
    "trace_count": 1,
    "max_duration": 5006,
    "max_outgoing_loss_rate": 0.013,
    "total_event_count": 568,
    "error_count": 2
}
]]></artwork>
        </figure>
      </section>
      <section anchor="traces">
        <name>traces</name>
        <t>It is often advantageous to group several related qlog traces together in a single
file. For example, we can simultaneously perform logging on the client, on the
server and on a single point on their common network path. For analysis, it is
useful to aggregate these three individual traces together into a single file, so
it can be uniquely stored, transferred and annotated.</t>
        <t>As such, the "traces" array contains a list of individual qlog traces. Typical
qlogs will only contain a single trace in this array. These can later be combined
into a single qlog file by taking the "traces" entry/entries for each qlog file
individually and copying them to the "traces" array of a new, aggregated qlog
file. This is typically done in a post-processing step.</t>
        <t>The "traces" array can thus contain both normal traces (for the definition of the
Trace type, see <xref target="trace"/>), but also "error" entries. These indicate that we tried
to find/convert a file for inclusion in the aggregated qlog, but there was an
error during the process. Rather than silently dropping the erroneous file, we can
opt to explicitly include it in the qlog file as an entry in the "traces" array,
as shown in <xref target="trace-error-def"/>.</t>
        <t>Definition:</t>
        <figure anchor="trace-error-def">
          <name>TraceError definition</name>
          <sourcecode type="cddl"><![CDATA[
TraceError = {
    error_description: text
    ; the original URI at which we attempted to find the file
    ? uri: text
    ? vantage_point: VantagePoint
}
]]></sourcecode>
        </figure>
        <t>JSON serialization example:</t>
        <figure anchor="trace-error-ex">
          <name>TraceError example</name>
          <artwork><![CDATA[
{
    "error_description": "File could not be found",
    "uri": "/srv/traces/today/latest.qlog",
    "vantage_point": { type: "server" }
}
]]></artwork>
        </figure>
        <t>Note that another way to combine events of different traces in a single qlog file
is through the use of the "group_id" field, discussed in <xref target="group-ids"/>.</t>
      </section>
      <section anchor="trace">
        <name>Individual Trace containers</name>
        <t>The exact conceptual definition of a Trace can be fluid. For example, a trace
could contain all events for a single connection, for a single endpoint, for a
single measurement interval, for a single protocol, etc. As such, a Trace
container contains some metadata in addition to the logged events, see
<xref target="trace-def"/>.</t>
        <t>In the normal use case however, a trace is a log of a single data flow collected
at a single location or vantage point. For example, for QUIC, a single trace only
contains events for a single logical QUIC connection for either the client or the
server.</t>
        <t>The semantics and context of the trace can mainly be deduced from the entries in
the "common_fields" list and "vantage_point" field.</t>
        <t>Definition:</t>
        <figure anchor="trace-def">
          <name>Trace definition</name>
          <sourcecode type="cddl"><![CDATA[
Trace = {
    ? title: text
    ? description: text
    ? configuration: Configuration
    ? common_fields: CommonFields
    ? vantage_point: VantagePoint
    events: [* Event]
}
]]></sourcecode>
        </figure>
        <t>JSON serialization example:</t>
        <figure anchor="trace-ex">
          <name>Trace example</name>
          <artwork><![CDATA[
{
    "title": "Name of this particular trace (short)",
    "description": "Description for this trace (long)",
    "configuration": {
        "time_offset": 150
    },
    "common_fields": {
        "ODCID": "abcde1234",
        "time_format": "absolute"
    },
    "vantage_point": {
        "name": "backend-67",
        "type": "server"
    },
    "events": [...]
}
]]></artwork>
        </figure>
        <section anchor="configuration">
          <name>Configuration</name>
          <t>We take into account that a qlog file is usually not used in isolation, but by
means of various tools. Especially when aggregating various traces together or
preparing traces for a demonstration, one might wish to persist certain tool-based
settings inside the qlog file itself. For this, the configuration field is used.</t>
          <t>The configuration field can be viewed as a generic metadata field that tools can
fill with their own fields, based on per-tool logic. It is best practice for tools
to prefix each added field with their tool name to prevent collisions across
tools. This document only defines two optional, standard, tool-independent
configuration settings: "time_offset" and "original_uris".</t>
          <t>Definition:</t>
          <figure anchor="configuration-def">
            <name>Configuration definition</name>
            <sourcecode type="cddl"><![CDATA[
Configuration = {
    ; time_offset is in milliseconds
    time_offset: float64
    original_uris:[* text]
    * text => any
}
]]></sourcecode>
          </figure>
          <t>JSON serialization example:</t>
          <figure anchor="configuration-ex">
            <name>Configuration example</name>
            <artwork><![CDATA[
{
    "time_offset": 150,
    "original_uris": [
        "https://example.org/trace1.qlog",
        "https://example.org/trace2.qlog"
    ]
}
]]></artwork>
          </figure>
          <section anchor="timeoffset">
            <name>time_offset</name>
            <t>The time_offset field indicates by how many milliseconds the starting time of the current
trace should be offset. This is useful when comparing logs taken from various
systems, where clocks might not be perfectly synchronous. Users could use manual
tools or automated logic to align traces in time and the found optimal offsets can
be stored in this field for future usage. The default value is 0.</t>
          </section>
          <section anchor="originaluris">
            <name>original_uris</name>
            <t>The original_uris field is used when merging multiple individual qlog files or
other source files (e.g., when converting .pcaps to qlog). It allows to keep
better track where certain data came from. It is a simple array of strings. It is
an array instead of a single string, since a single qlog trace can be made up out
of an aggregation of multiple component qlog traces as well. The default value is
an empty array.</t>
          </section>
          <section anchor="custom-fields">
            <name>custom fields</name>
            <t>Tools can add optional custom metadata to the "configuration" field to store state
and make it easier to share specific data viewpoints and view configurations.</t>
            <t>Two examples from the <eref target="https://qvis.edm.uhasselt.be">qvis toolset</eref> are shown in
<xref target="qvis-config"/>.</t>
            <figure anchor="qvis-config">
              <name>Custom configuration fields example</name>
              <artwork><![CDATA[
{
    "configuration" : {
        "qvis" : {
            "congestion_graph": {
                "startX": 1000,
                "endX": 2000,
                "focusOnEventIndex": 124
            }

            "sequence_diagram" : {
                "focusOnEventIndex": 555
            }
        }
    }
}
]]></artwork>
            </figure>
          </section>
        </section>
        <section anchor="vantage-point">
          <name>vantage_point</name>
          <t>The vantage_point field describes the vantage point from which the trace
originates, see <xref target="vantage-point-def"/>. Each trace can have only a single vantage_point
and thus all events in a trace <bcp14>MUST</bcp14> BE from the perspective of this vantage_point.
To include events from multiple vantage_points, implementers can for example
include multiple traces, split by vantage_point, in a single qlog file.</t>
          <t>Definitions:</t>
          <figure anchor="vantage-point-def">
            <name>VantagePoint definition</name>
            <sourcecode type="cddl"><![CDATA[
VantagePoint = {
    ? name: text
    type: VantagePointType
    ? flow: VantagePointType
}

; client = endpoint which initiates the connection
; server = endpoint which accepts the connection
; network = observer in between client and server
VantagePointType = "client" / "server" / "network" / "unknown"
]]></sourcecode>
          </figure>
          <t>JSON serialization examples:</t>
          <figure anchor="vantage-point-ex">
            <name>VantagePoint example</name>
            <artwork><![CDATA[
{
    "name": "aioquic client",
    "type": "client"
}

{
    "name": "wireshark trace",
    "type": "network",
    "flow": "client"
}
]]></artwork>
          </figure>
          <t>The flow field is only required if the type is "network" (for example, the trace
is generated from a packet capture). It is used to disambiguate events like
"packet sent" and "packet received". This is indicated explicitly because for
multiple reasons (e.g., privacy) data from which the flow direction can be
otherwise inferred (e.g., IP addresses) might not be present in the logs.</t>
          <t>Meaning of the different values for the flow field:
  * "client" indicates that this vantage point follows client data flow semantics (a
    "packet sent" event goes in the direction of the server).
  * "server" indicates that this vantage point follow server data flow semantics (a
    "packet sent" event goes in the direction of the client).
  * "unknown" indicates that the flow's direction is unknown.</t>
          <t>Depending on the context, tools confronted with "unknown" values in the
vantage_point can either try to heuristically infer the semantics from
protocol-level domain knowledge (e.g., in QUIC, the client always sends the first
packet) or give the user the option to switch between client and server
perspectives manually.</t>
        </section>
      </section>
      <section anchor="field-name-semantics">
        <name>Field name semantics</name>
        <t>Inside of the "events" field of a qlog trace is a list of events logged by the
endpoint. Each event is specified as a generic object with a number of member
fields and their associated data. Depending on the protocol and use case, the
exact member field names and their formats can differ across implementations. This
section lists the main, pre-defined and reserved field names with specific
semantics and expected corresponding value formats.</t>
        <t>Each qlog event at minimum requires the "time" (<xref target="time-based-fields"/>), "name"
(<xref target="name-field"/>) and "data" (<xref target="data-field"/>) fields. Other typical fields are
"time_format" (<xref target="time-based-fields"/>), "protocol_type" (<xref target="protocol-type-field"/>),
"trigger" (<xref target="trigger-field"/>), and "group_id" <xref target="group-ids"/>. As especially these
later fields typically have identical values across individual event instances,
they are normally logged separately in the "common_fields" (<xref target="common-fields"/>).</t>
        <t>The specific values for each of these fields and their semantics are defined in
separate documents, specific per protocol or use case. For example: event
definitions for QUIC, HTTP/3 and QPACK can be found in <xref target="QLOG-QUIC"/> and
<xref target="QLOG-H3"/>.</t>
        <t>Other fields are explicitly allowed by the qlog approach, and tools <bcp14>SHOULD</bcp14> allow
for the presence of unknown event fields, but their semantics depend on the
context of the log usage (e.g., for QUIC, the ODCID field is used), see
<xref target="QLOG-QUIC"/>.</t>
        <t>An example of a qlog event with its component fields is shown in
<xref target="event-def"/>.</t>
        <t>Definition:</t>
        <figure anchor="event-def">
          <name>Event definition</name>
          <sourcecode type="cddl"><![CDATA[
Event = {
    time: float64
    name: text
    data: $ProtocolEventBody

    ? time_format: TimeFormat

    ? protocol_type: ProtocolType
    ? group_id: GroupID

    ; events can contain any amount of custom fields
    * text => any
}
]]></sourcecode>
        </figure>
        <t>JSON serialization:</t>
        <figure anchor="event-ex">
          <name>Event example</name>
          <artwork><![CDATA[
{
    "time": 1553986553572,

    "name": "transport:packet_sent",
    "data": { ... },

    "protocol_type":  ["QUIC","HTTP3"],
    "group_id": "127ecc830d98f9d54a42c4f0842aa87e181a",

    "time_format": "absolute",

    "ODCID": "127ecc830d98f9d54a42c4f0842aa87e181a"
}
]]></artwork>
        </figure>
        <section anchor="time-based-fields">
          <name>Timestamps</name>
          <t>The "time" field indicates the timestamp at which the event occurred. Its value is
typically the Unix timestamp since the 1970 epoch (number of milliseconds since
midnight UTC, January 1, 1970, ignoring leap seconds). However, qlog supports two
more succinct timestamps formats to allow reducing file size. The employed format
is indicated in the "time_format" field, which allows one of three values:
"absolute", "delta" or "relative".</t>
          <t>Definition:</t>
          <figure anchor="time-format-def">
            <name>TimeFormat definition</name>
            <sourcecode type="cddl"><![CDATA[
TimeFormat = "absolute" / "delta" / "relative"
]]></sourcecode>
          </figure>
          <ul spacing="normal">
            <li>Absolute: Include the full absolute timestamp with each event. This approach
uses the largest amount of characters. This is also the default value of the
"time_format" field.</li>
            <li>Delta: Delta-encode each time value on the previously logged value. The first
event in a trace typically logs the full absolute timestamp. This approach uses
the least amount of characters.</li>
            <li>Relative: Specify a full "reference_time" timestamp (typically this is done
up-front in "common_fields", see <xref target="common-fields"/>) and include only
relatively-encoded values based on this reference_time with each event. The
"reference_time" value is typically the first absolute timestamp. This approach
uses a medium amount of characters.</li>
          </ul>
          <t>The first option is good for stateless loggers, the second and third for stateful
loggers. The third option is generally preferred, since it produces smaller files
while being easier to reason about. An example for each option can be seen in
<xref target="time-format-ex"/>.</t>
          <figure anchor="time-format-ex">
            <name>Three different approaches for logging timestamps</name>
            <artwork><![CDATA[
The absolute approach will use:
1500, 1505, 1522, 1588

The delta approach will use:
1500, 5, 17, 66

The relative approach will:
- set the reference_time to 1500 in "common_fields"
- use: 0, 5, 22, 88
]]></artwork>
          </figure>
          <t>One of these options is typically chosen for the entire trace (put differently:
each event has the same value for the "time_format" field). Each event <bcp14>MUST</bcp14>
include a timestamp in the "time" field.</t>
          <t>Events in each individual trace <bcp14>SHOULD</bcp14> be logged in strictly ascending timestamp
order (though not necessarily absolute value, for the "delta" format). Tools CAN
sort all events on the timestamp before processing them, though are not required
to (as this could impose a significant processing overhead). This can be a problem
especially for multi-threaded and/or streaming loggers, who could consider using a
separate post-processor to order qlog events in time if a tool do not provide this
feature.</t>
          <t>Timestamps do not have to use the UNIX epoch timestamp as their reference. For
example for privacy considerations, any initial reference timestamps (for example
"endpoint uptime in ms" or "time since connection start in ms") can be chosen.
Tools <bcp14>SHOULD NOT</bcp14> assume the ability to derive the absolute Unix timestamp from
qlog traces, nor allow on them to relatively order events across two or more
separate traces (in this case, clock drift should also be taken into account).</t>
        </section>
        <section anchor="name-field">
          <name>Category and Event Type</name>
          <t>Events differ mainly in the type of metadata associated with them. To help
identify a given event and how to interpret its metadata in the "data" field (see
<xref target="data-field"/>), each event has an associated "name" field. This can be considered
as a concatenation of two other fields, namely event "category" and event "type".</t>
          <t>Category allows a higher-level grouping of events per specific event type. For
example for QUIC and HTTP/3, the different categories could be "transport",
"http", "qpack", and "recovery". Within these categories, the event Type provides
additional granularity. For example for QUIC and HTTP/3, within the "transport"
Category, there would be "packet_sent" and "packet_received" events.</t>
          <t>Logging category and type separately conceptually allows for fast and high-level
filtering based on category and the re-use of event types across categories.
However, it also considerably inflates the log size and this flexibility is not
used extensively in practice at the time of writing.</t>
          <t>As such, the default approach in qlog is to concatenate both field values using
the ":" character in the "name" field, as can be seen in <xref target="name-ex"/>. As
such, qlog category and type names <bcp14>MUST NOT</bcp14> include this character.</t>
          <figure anchor="name-ex">
            <name>Ways of logging category, type and name of an event.</name>
            <artwork><![CDATA[
JSON serialization using separate fields:
{
    "category": "transport",
    "type": "packet_sent"
}

JSON serialization using ":" concatenated field:
{
    "name": "transport:packet_sent"
}
]]></artwork>
          </figure>
          <t>Certain serializations CAN emit category and type as separate fields, and qlog
tools <bcp14>SHOULD</bcp14> be able to deal with both the concatenated "name" field, and the
separate "category" and "type" fields. Text-based serializations however are
encouraged to employ the concatenated "name" field for efficiency.</t>
        </section>
        <section anchor="data-field">
          <name>Data</name>
          <t>The data field is a generic object. It contains the per-event metadata and its
form and semantics are defined per specific sort of event. For example, data
field value definitions for QUIC and HTTP/3 can be found in <xref target="QLOG-QUIC"/> and
<xref target="QLOG-H3"/>.</t>
          <t>This field is defined here as a CDDL extension point (a "socket" or
"plug") named <tt>$ProtocolEventBody</tt>. Other documents <bcp14>MUST</bcp14> properly extend
this extension point when defining new data field content options to
enable automated validation of aggregated qlog schemas.</t>
          <t>The only common field defined for the data field is the <tt>trigger</tt> field,
which is discussed in <xref target="trigger-field"/>.</t>
          <t>Definition:</t>
          <figure anchor="protocoleventbody-def">
            <name>ProtocolEventBody definition</name>
            <sourcecode type="cddl"><![CDATA[
; The ProtocolEventBody is any key-value map (e.g., JSON object)
; only the optional trigger field is defined in this document
$ProtocolEventBody /= {
    ? trigger: text
    * text => any
}
; event documents are intended to extend this socket by using:
; NewProtocolEvents = EventType1 / EventType2 / ... / EventTypeN
; $ProtocolEventBody /= NewProtocolEvents
]]></sourcecode>
          </figure>
          <t>One purely illustrative example for a QUIC "packet_sent" event is shown in
<xref target="data-ex"/>:</t>
          <figure anchor="data-ex">
            <name>Example of the 'data' field for a QUIC packet_sent event</name>
            <artwork><![CDATA[
TransportPacketSent = {
    ? packet_size: uint16
    header: PacketHeader
    ? frames:[* QuicFrame]
    ? trigger: "pto_probe" / "retransmit_timeout" / "bandwidth_probe"
}

could be serialized as

{
    "packet_size": 1280,
    "header": {
        "packet_type": "1RTT",
        "packet_number": 123
    },
    "frames": [
        {
            "frame_type": "stream",
            "length": 1000,
            "offset": 456
        },
        {
            "frame_type": "padding"
        }
    ]
}
]]></artwork>
          </figure>
        </section>
        <section anchor="protocol-type-field">
          <name>protocol_type</name>
          <t>The "protocol_type" array field indicates to which protocols (or protocol
"stacks") this event belongs. This allows a single qlog file to aggregate traces
of different protocols (e.g., a web server offering both TCP+HTTP/2 and
QUIC+HTTP/3 connections).</t>
          <t>Definition:</t>
          <figure anchor="protocol-type-def">
            <name>ProtocolType definition</name>
            <sourcecode type="cddl"><![CDATA[
ProtocolType = [+ text]
]]></sourcecode>
          </figure>
          <t>For example, QUIC and HTTP/3 events have the "QUIC" and "HTTP3" protocol_type
entry values, see <xref target="QLOG-QUIC"/> and <xref target="QLOG-H3"/>.</t>
          <t>Typically however, all events in a single trace are of the same few protocols, and
this array field is logged once in "common_fields", see <xref target="common-fields"/>.</t>
        </section>
        <section anchor="trigger-field">
          <name>Triggers</name>
          <t>Sometimes, additional information is needed in the case where a single event can
be caused by a variety of other events. In the normal case, the context of the
surrounding log messages gives a hint as to which of these other events was the
cause. However, in highly-parallel and optimized implementations, corresponding
log messages might separated in time. Another option is to explicitly indicate
these "triggers" in a high-level way per-event to get more fine-grained
information without much additional overhead.</t>
          <t>In qlog, the optional "trigger" field contains a string value describing
the reason (if any) for this event instance occurring, see
<xref target="data-field"/>. While this "trigger" field could be a property of the
qlog Event itself, it is instead a property of the "data" field instead.
This choice was made because many event types do not include a trigger
value, and having the field at the Event-level would cause overhead in
some serializations. Additional information on the trigger can be added
in the form of additional member fields of the "data" field value, yet
this is highly implementation-specific, as are the trigger field's
string values.</t>
          <t>One purely illustrative example of some potential triggers for QUIC's
"packet_dropped" event is shown in <xref target="trigger-ex"/>:</t>
          <figure anchor="trigger-ex">
            <name>Trigger example</name>
            <artwork><![CDATA[
TransportPacketDropped = {
    ? packet_type: PacketType
    ? raw_length: uint16

    ? trigger: "key_unavailable" / "unknown_connection_id" /
               "decrypt_error" / "unsupported_version"
}
]]></artwork>
          </figure>
        </section>
        <section anchor="group-ids">
          <name>group_id</name>
          <t>As discussed in <xref target="trace"/>, a single qlog file can contain several traces taken
from different vantage points. However, a single trace from one endpoint can also
contain events from a variety of sources. For example, a server implementation
might choose to log events for all incoming connections in a single large
(streamed) qlog file. As such, we need a method for splitting up events belonging
to separate logical entities.</t>
          <t>The simplest way to perform this splitting is by associating a "group identifier"
to each event that indicates to which conceptual "group" each event belongs. A
post-processing step can then extract events per group. However, this group
identifier can be highly protocol and context-specific. In the example above, we
might use QUIC's "Original Destination Connection ID" to uniquely identify a
connection. As such, they might add a "ODCID" field to each event. However, a
middlebox logging IP or TCP traffic might rather use four-tuples to identify
connections, and add a "four_tuple" field.</t>
          <t>As such, to provide consistency and ease of tooling in cross-protocol and
cross-context setups, qlog instead defines the common "group_id" field, which
contains a string value. Implementations are free to use their preferred string
serialization for this field, so long as it contains a unique value per logical
group. Some examples can be seen in <xref target="group-id-ex"/>.</t>
          <t>Definition:</t>
          <figure anchor="group-id-def">
            <name>GroupID definition</name>
            <sourcecode type="cddl"><![CDATA[
GroupID = text
]]></sourcecode>
          </figure>
          <t>JSON serialization example for events grouped by four tuples
and QUIC connection IDs:</t>
          <figure anchor="group-id-ex">
            <name>GroupID example</name>
            <artwork><![CDATA[
"events": [
    {
        "time": 1553986553579,
        "protocol_type": ["TCP", "TLS", "HTTP2"],
        "group_id": "ip1=2001:67c:1232:144:9498:6df6:f450:110b,
                   ip2=2001:67c:2b0:1c1::198,port1=59105,port2=80",
        "name": "transport:packet_received",
        "data": { ... }
    },
    {
        "time": 1553986553581,
        "protocol_type": ["QUIC","HTTP3"],
        "group_id": "127ecc830d98f9d54a42c4f0842aa87e181a",
        "name": "transport:packet_sent",
        "data": { ... }
    }
]
]]></artwork>
          </figure>
          <t>Note that in some contexts (for example a Multipath transport protocol) it might
make sense to add additional contextual per-event fields (for example "path_id"),
rather than use the group_id field for that purpose.</t>
          <t>Note also that, typically, a single trace only contains events belonging to a
single logical group (for example, an individual QUIC connection). As such,
instead of logging the "group_id" field with an identical value for each event
instance, this field is typically logged once in "common_fields", see
<xref target="common-fields"/>.</t>
        </section>
        <section anchor="common-fields">
          <name>common_fields</name>
          <t>As discussed in the previous sections, information for a typical qlog event varies
in three main fields: "time", "name" and associated data. Additionally, there are
also several more advanced fields that allow mixing events from different
protocols and contexts inside of the same trace (for example "protocol_type" and
"group_id"). In most "normal" use cases however, the values of these advanced
fields are consistent for each event instance (for example, a single trace
contains events for a single QUIC connection).</t>
          <t>To reduce file size and making logging easier, qlog uses the "common_fields" list
to indicate those fields and their values that are shared by all events in this
component trace. This prevents these fields from being logged for each individual
event. An example of this is shown in <xref target="common-fields-ex"/>.</t>
          <figure anchor="common-fields-ex">
            <name>CommonFields example</name>
            <artwork><![CDATA[
JSON serialization with repeated field values
per-event instance:

{
    "events": [{
            "group_id": "127ecc830d98f9d54a42c4f0842aa87e181a",
            "protocol_type": ["QUIC","HTTP3"],
            "time_format": "relative",
            "reference_time": 1553986553572,

            "time": 2,
            "name": "transport:packet_received",
            "data": { ... }
        },{
            "group_id": "127ecc830d98f9d54a42c4f0842aa87e181a",
            "protocol_type": ["QUIC","HTTP3"],
            "time_format": "relative",
            "reference_time": 1553986553572,

            "time": 7,
            "name": "http:frame_parsed",
            "data": { ... }
        }
    ]
}

JSON serialization with repeated field values instead
extracted to common_fields:

{
    "common_fields": {
        "group_id": "127ecc830d98f9d54a42c4f0842aa87e181a",
        "protocol_type": ["QUIC","HTTP3"],
        "time_format": "relative",
        "reference_time": 1553986553572
    },
    "events": [
        {
            "time": 2,
            "name": "transport:packet_received",
            "data": { ... }
        },{
            "time": 7,
            "name": "http:frame_parsed",
            "data": { ... }
        }
    ]
}
]]></artwork>
          </figure>
          <t>The "common_fields" field is a generic dictionary of key-value pairs, where the
key is always a string and the value can be of any type, but is typically also a
string or number. As such, unknown entries in this dictionary <bcp14>MUST</bcp14> be disregarded
by the user and tools (i.e., the presence of an unknown field is explicitly NOT an
error).</t>
          <t>The list of default qlog fields that are typically logged in common_fields (as
opposed to as individual fields per event instance) are shown in the listing
below:</t>
          <t>Definition:</t>
          <figure anchor="common-fields-def">
            <name>CommonFields definition</name>
            <sourcecode type="cddl"><![CDATA[
CommonFields = {
    ? time_format: TimeFormat
    ? reference_time: float64

    ? protocol_type: ProtocolType
    ? group_id: GroupID

    * text => any
}
]]></sourcecode>
          </figure>
          <t>Tools <bcp14>MUST</bcp14> be able to deal with these fields being defined either on each event
individually or combined in common_fields. Note that if at least one event in a
trace has a different value for a given field, this field <bcp14>MUST NOT</bcp14> be added to
common_fields but instead defined on each event individually. Good example of such
fields are "time" and "data", who are divergent by nature.</t>
        </section>
      </section>
    </section>
    <section anchor="guidelines-for-event-definition-documents">
      <name>Guidelines for event definition documents</name>
      <t>This document only defines the main schema for the qlog format. This is intended
to be used together with specific, per-protocol event definitions that specify the
name (category + type) and data needed for each individual event. This is with the
intent to allow the qlog main schema to be easily re-used for several protocols.
Examples include the QUIC event definitions <xref target="QLOG-QUIC"/> and HTTP/3 and QPACK
event definitions <xref target="QLOG-H3"/>.</t>
      <t>This section defines some basic annotations and concepts the creators of event
definition documents <bcp14>SHOULD</bcp14> follow to ensure a measure of consistency, making it
easier for qlog implementers to extrapolate from one protocol to another.</t>
      <section anchor="event-design-guidelines">
        <name>Event design guidelines</name>
        <t>TODO: pending QUIC working group discussion. This text reflects the initial (qlog
draft 01 and 02) setup.</t>
        <t>There are several ways of defining qlog events. In practice, we have seen two main
types used so far: a) those that map directly to concepts seen in the protocols
(e.g., <tt>packet_sent</tt>) and b) those that act as aggregating events that combine
data from several possible protocol behaviors or code paths into one (e.g.,
<tt>parameters_set</tt>). The latter are typically used as a means to reduce the amount
of unique event definitions, as reflecting each possible protocol event as a
separate qlog entity would cause an explosion of event types.</t>
        <t>Additionally, logging duplicate data is typically prevented as much as possible.
For example, packet header values that remain consistent across many packets are
split into separate events (for example <tt>spin_bit_updated</tt> or
<tt>connection_id_updated</tt> for QUIC).</t>
        <t>Finally, we have typically refrained from adding additional state change events if
those state changes can be directly inferred from data on the wire (for example
flow control limit changes) if the implementation is bug-free and spec-compliant.
Exceptions have been made for common events that benefit from being easily
identifiable or individually logged (for example <tt>packets_acked</tt>).</t>
      </section>
      <section anchor="event-importance-indicators">
        <name>Event importance indicators</name>
        <t>Depending on how events are designed, it may be that several events allow the
logging of similar or overlapping data. For example the separate QUIC
<tt>connection_started</tt> event overlaps with the more generic
<tt>connection_state_updated</tt>. In these cases, it is not always clear which event
should be logged or used, and which event should take precedence if e.g., both are
present and provide conflicting information.</t>
        <t>To aid in this decision making, we recommend that each event <bcp14>SHOULD</bcp14> have an
"importance indicator" with one of three values, in decreasing order of importance
and expected usage:</t>
        <ul spacing="normal">
          <li>Core</li>
          <li>Base</li>
          <li>Extra</li>
        </ul>
        <t>The "Core" events are the events that <bcp14>SHOULD</bcp14> be present in all qlog files for a
given protocol. These are typically tied to basic packet and frame parsing and
creation, as well as listing basic internal metrics. Tool implementers <bcp14>SHOULD</bcp14>
expect and add support for these events, though <bcp14>SHOULD NOT</bcp14> expect all Core events
to be present in each qlog trace.</t>
        <t>The "Base" events add additional debugging options and CAN be present in qlog
files. Most of these can be implicitly inferred from data in Core events (if those
contain all their properties), but for many it is better to log the events
explicitly as well, making it clearer how the implementation behaves. These events
are for example tied to passing data around in buffers, to how internal state
machines change and help show when decisions are actually made based on received
data. Tool implementers <bcp14>SHOULD</bcp14> at least add support for showing the contents of
these events, if they do not handle them explicitly.</t>
        <t>The "Extra" events are considered mostly useful for low-level debugging of the
implementation, rather than the protocol. They allow more fine-grained tracking of
internal behavior. As such, they CAN be present in qlog files and tool
implementers CAN add support for these, but they are not required to.</t>
        <t>Note that in some cases, implementers might not want to log for example data
content details in the "Core" events due to performance or privacy considerations.
In this case, they <bcp14>SHOULD</bcp14> use (a subset of) relevant "Base" events instead to
ensure usability of the qlog output. As an example, implementations that do not
log QUIC <tt>packet_received</tt> events and thus also not which (if any) ACK frames the
packet contains, <bcp14>SHOULD</bcp14> log <tt>packets_acked</tt> events instead.</t>
        <t>Finally, for event types whose data (partially) overlap with other event types'
definitions, where necessary the event definition document should include explicit
guidance on which to use in specific situations.</t>
      </section>
      <section anchor="custom-fields-1">
        <name>Custom fields</name>
        <t>Event definition documents are free to define new category and event types,
top-level fields (e.g., a per-event field indicating its privacy properties or
path_id in multipath protocols), as well as values for the "trigger" property
within the "data" field, or other member fields of the "data" field, as they see
fit.</t>
        <t>They however <bcp14>SHOULD NOT</bcp14> expect non-specialized tools to recognize or visualize
this custom data. However, tools <bcp14>SHOULD</bcp14> make an effort to visualize even unknown
data if possible in the specific tool's context. If they do not, they <bcp14>MUST</bcp14> ignore
these unknown fields.</t>
      </section>
    </section>
    <section anchor="generic-events-and-data-classes">
      <name>Generic events and data classes</name>
      <t>There are some event types and data classes that are common across protocols,
applications and use cases that benefit from being defined in a single location.
This section specifies such common definitions.</t>
      <section anchor="raw-info">
        <name>Raw packet and frame information</name>
        <t>While qlog is a high-level logging format, it also allows the inclusion of most
raw wire image information, such as byte lengths and byte values. This is useful
when for example investigating or tuning packetization behavior or determining
encoding/framing overheads. However, these fields are not always necessary, can
take up considerable space, and can have a considerable privacy and security
impact (see <xref target="privacy"/>). Where applicable, these fields are grouped in a
separate, optional, field named "raw" of type RawInfo. The exact definition of
entities, headers, trailers and payloads depend on the protocol used.</t>
        <t>Definition:</t>
        <figure anchor="raw-info-def">
          <name>RawInfo definition</name>
          <sourcecode type="cddl"><![CDATA[
RawInfo = {
    ; the full byte length of the entity (e.g., packet or frame),
    ; including possible headers and trailers
    ? length: uint64

    ; the byte length of the entity's payload,
    ; excluding possible headers or trailers
    ? payload_length: uint64

    ; the (potentially truncated) contents of the full entity,
    ; including headers and possibly trailers
    ? data: hexstring
}
]]></sourcecode>
        </figure>
        <t>The RawInfo:data field can be truncated for privacy or security purposes, see
<xref target="truncated-values"/>. In this case, the length and payload_length fields should
still indicate the non-truncated lengths when used for debugging purposes.</t>
        <t>This document does not specify explicit header_length or trailer_length fields.
In protocols without trailers, header_length can be calculated by subtracting
the payload_length from the length. In protocols with trailers (e.g., QUIC's
AEAD tag), event definition documents <bcp14>SHOULD</bcp14> define how to support header_length
calculation.</t>
      </section>
      <section anchor="generic-events">
        <name>Generic events</name>
        <t>In typical logging setups, users utilize a discrete number of well-defined logging
categories, levels or severities to log freeform (string) data. This generic
events category replicates this approach to allow implementations to fully replace
their existing text-based logging by qlog. This is done by providing events to log
generic strings for the typical well-known logging levels (error, warning, info,
debug, verbose).</t>
        <t>For the events defined below, the "category" is "generic" and their "type" is the
name of the heading in lowercase (e.g., the "name" of the error event is
"generic:error").</t>
        <section anchor="error">
          <name>error</name>
          <t>Importance: Core</t>
          <t>Used to log details of an internal error that might not get reflected on the wire.</t>
          <t>Definition:</t>
          <figure anchor="generic-error-def">
            <name>GenericError definition</name>
            <sourcecode type="cddl"><![CDATA[
GenericError = {
    ? code: uint64
    ? message: text
}
]]></sourcecode>
          </figure>
        </section>
        <section anchor="warning">
          <name>warning</name>
          <t>Importance: Base</t>
          <t>Used to log details of an internal warning that might not get reflected on the
wire.</t>
          <t>Definition:</t>
          <figure anchor="generic-warning-def">
            <name>GenericWarning definition</name>
            <sourcecode type="cddl"><![CDATA[
GenericWarning = {
    ? code: uint64
    ? message: text
}
]]></sourcecode>
          </figure>
        </section>
        <section anchor="info">
          <name>info</name>
          <t>Importance: Extra</t>
          <t>Used mainly for implementations that want to use qlog as their one and only
logging format but still want to support unstructured string messages.</t>
          <t>Definition:</t>
          <figure anchor="generic-info-def">
            <name>GenericInfo definition</name>
            <sourcecode type="cddl"><![CDATA[
GenericInfo = {
    message: text
}
]]></sourcecode>
          </figure>
        </section>
        <section anchor="debug">
          <name>debug</name>
          <t>Importance: Extra</t>
          <t>Used mainly for implementations that want to use qlog as their one and only
logging format but still want to support unstructured string messages.</t>
          <t>Definition:</t>
          <figure anchor="generic-debug-def">
            <name>GenericDebug definition</name>
            <sourcecode type="cddl"><![CDATA[
GenericDebug = {
    message: text
}
]]></sourcecode>
          </figure>
        </section>
        <section anchor="verbose">
          <name>verbose</name>
          <t>Importance: Extra</t>
          <t>Used mainly for implementations that want to use qlog as their one and only
logging format but still want to support unstructured string messages.</t>
          <t>Definition:</t>
          <figure anchor="generic-verbose-def">
            <name>GenericVerbose definition</name>
            <sourcecode type="cddl"><![CDATA[
GenericVerbose = {
    message: text
}
]]></sourcecode>
          </figure>
        </section>
      </section>
      <section anchor="simulation-events">
        <name>Simulation events</name>
        <t>When evaluating a protocol implementation, one typically sets up a series of
interoperability or benchmarking tests, in which the test situations can change
over time. For example, the network bandwidth or latency can vary during the test,
or the network can be fully disable for a short time. In these setups, it is
useful to know when exactly these conditions are triggered, to allow for proper
correlation with other events.</t>
        <t>For the events defined below, the "category" is "simulation" and their "type" is
the name of the heading in lowercase (e.g., the "name" of the scenario event is
"simulation:scenario").</t>
        <section anchor="scenario">
          <name>scenario</name>
          <t>Importance: Extra</t>
          <t>Used to specify which specific scenario is being tested at this particular
instance. This could also be reflected in the top-level qlog's <tt>summary</tt> or
<tt>configuration</tt> fields, but having a separate event allows easier aggregation of
several simulations into one trace (e.g., split by <tt>group_id</tt>).</t>
          <t>Definition:</t>
          <figure anchor="simulation-scenario-def">
            <name>SimulationScenario definition</name>
            <sourcecode type="cddl"><![CDATA[
SimulationScenario = {
    ? name: text
    ? details: {* text => any }
}
]]></sourcecode>
          </figure>
        </section>
        <section anchor="marker">
          <name>marker</name>
          <t>Importance: Extra</t>
          <t>Used to indicate when specific emulation conditions are triggered at set times
(e.g., at 3 seconds in 2% packet loss is introduced, at 10s a NAT rebind is
triggered).</t>
          <t>Definition:</t>
          <figure anchor="simulation-marker-def">
            <name>SimulationMarker definition</name>
            <sourcecode type="cddl"><![CDATA[
SimulationMarker = {
    ? type: text
    ? message: text
}
]]></sourcecode>
          </figure>
        </section>
      </section>
    </section>
    <section anchor="concrete-formats">
      <name>Serializing qlog</name>
      <t>This document and other related qlog schema definitions are intentionally
serialization-format agnostic. This means that implementers themselves can choose
how to represent and serialize qlog data practically on disk or on the wire. Some
examples of possible formats are JSON, CBOR, CSV, protocol buffers, flatbuffers,
etc.</t>
      <t>All these formats make certain tradeoffs between flexibility and efficiency, with
textual formats like JSON typically being more flexible but also less efficient
than binary formats like protocol buffers. The format choice will depend on the
practical use case of the qlog user. For example, for use in day to day debugging,
a plaintext readable (yet relatively large) format like JSON is probably
preferred. However, for use in production, a more optimized yet restricted format
can be better. In this latter case, it will be more difficult to achieve
interoperability between qlog implementations of various protocol stacks, as some
custom or tweaked events from one might not be compatible with the format of the
other. This will also reflect in tooling: not all tools will support all formats.</t>
      <t>This being said, the authors prefer JSON as the basis for storing qlog,
as it retains full flexibility and maximum interoperability. Storage
overhead can be managed well in practice by employing compression. For
this reason, this document details how to practically transform qlog
schema definitions to <xref target="JSON"/>, its subset <xref target="I-JSON"/>,
and its streamable derivative <xref target="JSON-Text-Sequences"/>s. We
discuss concrete options to bring down JSON size and processing
overheads in <xref target="optimizations"/>.</t>
      <t>As depending on the employed format different deserializers/parsers should be
used, the "qlog_format" field is used to indicate the chosen serialization
approach. This field is always a string, but can be made hierarchical by the use
of the "." separator between entries. For example, a value of "JSON.optimizationA"
can indicate that a default JSON format is being used, but that a certain
optimization of type A was applied to the file as well (see also
<xref target="optimizations"/>).</t>
      <section anchor="format-json">
        <name>qlog to JSON mapping</name>
        <t>When mapping qlog to normal JSON, the "qlog_format" field <bcp14>MUST</bcp14> have the value
"JSON". This is also the default qlog serialization and default value of this
field.</t>
        <t>When using normal JSON serialization, the file extension/suffix <bcp14>SHOULD</bcp14>
be ".qlog" and the Media Type (if any) <bcp14>SHOULD</bcp14> be "application/qlog+json"
per <xref target="RFC6839"/>.</t>
        <t>JSON files by definition (<xref target="RFC8259"/>) <bcp14>MUST</bcp14> utilize the UTF-8 encoding,
both for the file itself and the string values.</t>
        <t>While not specifically required by the JSON specification, all qlog field
names in a JSON serialization <bcp14>MUST</bcp14> be lowercase.</t>
        <t>In order to serialize CDDL-based qlog event and data structure
definitions to JSON, the official CDDL-to-JSON mapping defined in
Appendix E of <xref target="CDDL"/> <bcp14>SHOULD</bcp14> be employed.</t>
        <section anchor="i-json">
          <name>I-JSON</name>
          <t>For some use cases, it should be taken into account that not all popular
JSON parsers support the full JSON format. Especially for parsers
integrated with the JavaScript programming language (e.g., Web browsers,
NodeJS), users are recommended to stick to a JSON subset dubbed
<xref target="I-JSON"/> (or Internet-JSON).</t>
          <t>One of the key limitations of JavaScript and thus I-JSON is that it
cannot represent full 64-bit integers in standard operating mode (i.e.,
without using BigInt extensions), instead being limited to the range of
<tt>[-(2**53)+1, (2**53)-1]</tt>. In these circumstances, Appendix E of
<xref target="CDDL"/> recommends defining new CDDL types for int64 and
uint64 that limit their values to this range.</t>
          <t>While this can be sensible and workable for most use cases, some
protocols targeting qlog serialization (e.g., QUIC, HTTP/3), might
require full uint64 variables in some (rare) circumstances. In these
situations, it should be allowed to also use the string-based
representation of uint64 values alongside the numerical representation.
Concretely, the following definition of uint64 should override the
original and (web-based) tools should take into account that a uint64
field can be either a number or string.</t>
          <figure anchor="cddl-ijson-uint64-def">
            <name>Custom uint64 definition for I-JSON</name>
            <artwork><![CDATA[
uint64 = text / uint .size 8
]]></artwork>
          </figure>
        </section>
        <section anchor="truncated-values">
          <name>Truncated values</name>
          <t>For some use cases (e.g., limiting file size, privacy), it can be
necessary not to log a full raw blob (using the <tt>hexstring</tt> type) but
instead a truncated value (for example, only the first 100 bytes of an
HTTP response body to be able to discern which file it actually
contained). In these cases, the original byte-size length cannot be
obtained from the serialized value directly.</t>
          <t>As such, all qlog schema definitions <bcp14>SHOULD</bcp14> include a separate,
length-indicating field for all fields of type <tt>hexstring</tt> they specify,
see for example <xref target="raw-info"/>. This not only ensures the original length
can always be retrieved, but also allows the omission of any raw value
bytes of the field completely (e.g., out of privacy or security
considerations).</t>
          <t>To reduce overhead however and in the case the full raw value is logged,
the extra length-indicating field can be left out. As such, tools <bcp14>MUST</bcp14>
be able to deal with this situation and derive the length of the field
from the raw value if no separate length-indicating field is present.
The main possible permutations are shown by example in
<xref target="truncated-values-ex"/>.</t>
          <figure anchor="truncated-values-ex">
            <name>Example for serializing truncated hexstrings</name>
            <artwork><![CDATA[
// both the full raw value and its length are present
// (length is redundant)
{
    "raw_length": 5,
    "raw": "051428abff"
}

// only the raw value is present, indicating it
// represents the fields full value the byte
// length is obtained by calculating raw.length / 2
{
    "raw": "051428abff"
}

// only the length field is present, meaning the
// value was omitted
{
    "raw_length": 5,
}

// both fields are present and the lengths do not match:
// the value was truncated to the first three bytes.
{
    "raw_length": 5,
    "raw": "051428"
}
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="format-json-seq">
        <name>qlog to JSON Text Sequences mapping</name>
        <t>One of the downsides of using pure JSON is that it is inherently a non-streamable
format. Put differently, it is not possible to simply append new qlog events to a
log file without "closing" this file at the end by appending "]}]}". Without these
closing tags, most JSON parsers will be unable to parse the file entirely. As most
platforms do not provide a standard streaming JSON parser (which would be able to
deal with this problem), this document also provides a qlog mapping to a
streamable JSON format called JSON Text Sequences (JSON-SEQ) (<xref target="RFC7464"/>).</t>
        <t>When mapping qlog to JSON-SEQ, the "qlog_format" field <bcp14>MUST</bcp14> have the value
"JSON-SEQ".</t>
        <t>When using JSON-SEQ serialization, the file extension/suffix <bcp14>SHOULD</bcp14> be
".sqlog" (for "streaming" qlog) and the Media Type (if any) <bcp14>SHOULD</bcp14> be
"application/qlog+json-seq" per <xref target="RFC8091"/>.</t>
        <t>JSON Text Sequences are very similar to JSON, except that JSON objects are
serialized as individual records, each prefixed by an ASCII Record Separator
(&lt;RS&gt;, 0x1E), and each ending with an ASCII Line Feed character (\n, 0x0A). Note
that each record can also contain any amount of newlines in its body, as long as
it ends with a newline character before the next &lt;RS&gt; character.</t>
        <t>Each qlog event is serialized and interpreted as an individual JSON Text Sequence
record, and can simply be appended as a new object at the back of an event stream
or log file. Put differently, unlike default JSON, it does not require a file to
be wrapped as a full object with "{ ... }" or "[... ]".</t>
        <t>For this to work, some qlog definitions have to be adjusted however.
Mainly, events are no longer part of the "events" array in the Trace
object, but are instead logged separately from the qlog "header", as
indicated by the TraceSeq object in <xref target="trace-seq-def"/>. Additionally,
qlog's JSON-SEQ mapping does not allow logging multiple individual
traces in a single qlog file. As such, the QlogFile:traces field is
replaced by the singular QlogFileSeq:trace field, see
<xref target="qlog-file-seq-def"/>. An example can be seen in <xref target="json-seq-ex"/>. Note
that the "group_id" field can still be used on a per-event basis to
include events from conceptually different sources in a single JSON-SEQ
qlog file.</t>
        <t>Definition:</t>
        <figure anchor="trace-seq-def">
          <name>TraceSeq definition</name>
          <sourcecode type="cddl"><![CDATA[
TraceSeq = {
    ? title: text
    ? description: text
    ? configuration: Configuration
    ? common_fields: CommonFields
    ? vantage_point: VantagePoint
}
]]></sourcecode>
        </figure>
        <t>Definition:</t>
        <figure anchor="qlog-file-seq-def">
          <name>QlogFileSeq definition</name>
          <sourcecode type="cddl"><![CDATA[
QlogFileSeq = {
    qlog_format: "JSON-SEQ"

    qlog_version: text
    ? title: text
    ? description: text
    ? summary: Summary
    trace: TraceSeq
}
]]></sourcecode>
        </figure>
        <t>JSON-SEQ serialization examples:</t>
        <figure anchor="json-seq-ex">
          <name>Top-level element</name>
          <artwork><![CDATA[
// list of qlog events, serialized in accordance with RFC 7464,
// starting with a Record Separator character and ending with a
// newline.
// For display purposes, Record Separators are rendered as <RS>

<RS>{
    "qlog_version": "0.3",
    "qlog_format": "JSON-SEQ",
    "title": "Name of JSON Text Sequence qlog file (short)",
    "description": "Description for this trace file (long)",
    "summary": {
        ...
    },
    "trace": {
      "common_fields": {
        "protocol_type": ["QUIC","HTTP3"],
        "group_id":"127ecc830d98f9d54a42c4f0842aa87e181a",
        "time_format":"relative",
        "reference_time": 1553986553572
      },
      "vantage_point": {
        "name":"backend-67",
        "type":"server"
      }
    }
}
<RS>{"time": 2, "name": "transport:parameters_set", "data": { ... } }
<RS>{"time": 7, "name": "transport:packet_sent", "data": { ... } }
...
]]></artwork>
        </figure>
        <t>Note: while not specifically required by the JSON-SEQ specification, all qlog
field names in a JSON-SEQ serialization <bcp14>MUST</bcp14> be lowercase.</t>
        <t>In order to serialize all other CDDL-based qlog event and data structure
definitions to JSON-SEQ, the official CDDL-to-JSON mapping defined in
Appendix E of <xref target="CDDL"/> <bcp14>SHOULD</bcp14> still be employed.</t>
        <section anchor="supporting-json-text-sequences-in-tooling">
          <name>Supporting JSON Text Sequences in tooling</name>
          <t>Note that JSON Text Sequences are not supported in most default programming
environments (unlike normal JSON). However, several custom JSON-SEQ parsing
libraries exist in most programming languages that can be used and the format is
easy enough to parse with existing implementations (i.e., by splitting the file
into its component records and feeding them to a normal JSON parser individually,
as each record by itself is a valid JSON object).</t>
        </section>
      </section>
      <section anchor="optimizations">
        <name>Other optimized formatting options</name>
        <t>Both the JSON and JSON-SEQ formatting options described above are serviceable in
general small to medium scale (debugging) setups. However, these approaches tend
to be relatively verbose, leading to larger file sizes. Additionally, generalized
JSON(-SEQ) (de)serialization performance is typically (slightly) lower than that
of more optimized and predictable formats. Both aspects make these formats more
challenging (<eref target="https://qlog.edm.uhasselt.be/anrw/">though still practical</eref>) to use
in large scale setups.</t>
        <t>During the development of qlog, we compared a multitude of alternative formatting
and optimization options. The results of this study are <eref target="https://github.com/quiclog/internet-drafts/issues/30#issuecomment-617675097">summarized on the qlog
github
repository</eref>.
The rest of this section discusses some of these approaches implementations could
choose and the expected gains and tradeoffs inherent therein. Tools <bcp14>SHOULD</bcp14> support
mainly the compression options listed in <xref target="compression"/>, as they provide the
largest wins for the least cost overall.</t>
        <t>Over time, specific qlog formats and encodings can be created that more formally
define and combine some of the discussed optimizations or add new ones. We choose
to define these schemes in separate documents to keep the main qlog definition
clean and generalizable, as not all contexts require the same performance or
flexibility as others and qlog is intended to be a broadly usable and extensible
format (for example more flexibility is needed in earlier stages of protocol
development, while more performance is typically needed in later stages). This is
also the main reason why the general qlog format is the less optimized JSON
instead of a more performant option.</t>
        <t>To be able to easily distinguish between these options in qlog compatible tooling
(without the need to have the user provide out-of-band information or to
(heuristically) parse and process files in a multitude of ways, see also
<xref target="tooling"/>), we recommend using explicit file extensions to indicate specific
formats. As there are no standards in place for this type of extension to format
mapping, we employ a commonly used scheme here. Our approach is to list the
applied optimizations in the extension in ascending order of application (e.g., if
a qlog file is first optimized with technique A and then compressed with technique
B, the resulting file would have the extension ".(s)qlog.A.B"). This allows
tooling to start at the back of the extension to "undo" applied optimizations to
finally arrive at the expected qlog representation.</t>
        <section anchor="structure-optimizations">
          <name>Data structure optimizations</name>
          <t>The first general category of optimizations is to alter the representation of data
within an JSON(-SEQ) qlog file to reduce file size.</t>
          <t>The first option is to employ a scheme similar to the CSV (comma separated value
<xref target="RFC4180"/>) format, which utilizes the concept of column "headers" to prevent
repeating field names for each datapoint instance. Concretely for JSON qlog,
several field names are repeated with each event (i.e., time, name, data). These
names could be extracted into a separate list, after which qlog events could be
serialized as an array of values, as opposed to a full object. This approach was a
key part of the original qlog format (prior to draft-02) using the "event_fields"
field. However, tests showed that this optimization only provided a mean file size
reduction of 5% (100MB to 95MB) while significantly increasing the implementation
complexity, and this approach was abandoned in favor of the default JSON setup.
Implementations using this format should not employ a separate file extension (as
it still uses JSON), but rather employ a new value of "JSON.namedheaders" (or
"JSON-SEQ.namedheaders") for the "qlog_format" field (see <xref target="top-level"/>).</t>
          <t>The second option is to replace field values and/or names with indices into a
(dynamic) lookup table. This is a common compression technique and can provide
significant file size reductions (up to 50% in our tests, 100MB to 50MB). However,
this approach is even more difficult to implement efficiently and requires either
including the (dynamic) table in the resulting file (an approach taken by for
example <eref target="https://www.chromium.org/developers/design-documents/network-stack/netlog">Chromium's NetLog
format</eref>)
or defining a (static) table up-front and sharing this between implementations.
Implementations using this approach should not employ a separate file extension
(as it still uses JSON), but rather employ a new value of "JSON.dictionary" (or
"JSON-SEQ.dictionary") for the "qlog_format" field (see <xref target="top-level"/>).</t>
          <t>As both options either proved difficult to implement, reduced qlog file
readability, and provided too little improvement compared to other more
straightforward options (for example <xref target="compression"/>), these schemes are not
inherently part of qlog.</t>
        </section>
        <section anchor="compression">
          <name>Compression</name>
          <t>The second general category of optimizations is to utilize a (generic) compression
scheme for textual data. As qlog in the JSON(-SEQ) format typically contains a
large amount of repetition, off-the-shelf (text) compression techniques typically
succeed very well in bringing down file sizes (regularly with up to two orders of
magnitude in our tests, even for "fast" compression levels). As such, utilizing
compression is recommended before attempting other optimization options, even
though this might (somewhat) increase processing costs due to the additional
compression step.</t>
          <t>The first option is to use GZIP compression (<xref target="RFC1952"/>). This generic
compression scheme provides multiple compression levels (providing a trade-off
between compression speed and size reduction). Utilized at level 6 (a medium
setting thought to be applicable for streaming compression of a qlog stream in
commodity devices), gzip compresses qlog JSON files to 7% of their initial size on
average (100MB to 7MB). For this option, the file extension .(s)qlog.gz <bcp14>SHOULD</bcp14> BE
used. The "qlog_format" field should still reflect the original JSON formatting of
the qlog data (e.g., "JSON" or "JSON-SEQ").</t>
          <t>The second option is to use Brotli compression (<xref target="RFC7932"/>). While similar to
gzip, this more recent compression scheme provides a better efficiency. It also
allows multiple compression levels. Utilized at level 4 (a medium setting thought
to be applicable for streaming compression of a qlog stream in commodity devices),
brotli compresses qlog JSON files to 7% of their initial size on average (100MB to
7MB). For this option, the file extension .(s)qlog.br <bcp14>SHOULD</bcp14> BE used. The
"qlog_format" field should still reflect the original JSON formatting of the qlog
data (e.g., "JSON" or "JSON-SEQ").</t>
          <t>Other compression algorithms of course exist (for example xz, zstd, and lz4). We
mainly recommend gzip and brotli because of their tweakable behaviour and wide
support in web-based environments, which we envision as the main tooling ecosystem
(see also <xref target="tooling"/>).</t>
        </section>
        <section anchor="binary">
          <name>Binary formats</name>
          <t>The third general category of optimizations is to use a more optimized (often
binary) format instead of the textual JSON format. This approach inherently
produces smaller files and often has better (de)serialization performance.
However, the resultant files are no longer human readable and some formats require
hard tradeoffs between flexibility for performance.</t>
          <t>The first option is to use the CBOR (Concise Binary Object Representation
<xref target="RFC7049"/>) format. For our purposes, CBOR can be viewed as a straightforward
binary variant of JSON. As such, existing JSON qlog files can be trivially
converted to and from CBOR (though slightly more work is needed for JSON-SEQ qlogs
to convert them to CBOR-SEQ, see <xref target="RFC8742"/>). While CBOR thus does retain the
full qlog flexibility, it only provides a 25% file size reduction (100MB to 75MB)
compared to textual JSON(-SEQ). As CBOR support in programming environments is not
as widespread as that of textual JSON and the format lacks human readability, CBOR
was not chosen as the default qlog format. For this option, the file extension
.(s)qlog.cbor <bcp14>SHOULD</bcp14> BE used. The "qlog_format" field should still reflect the
original JSON formatting of the qlog data (e.g., "JSON" or "JSON-SEQ"). The media
type should indicate both whether JSON or JSON Text Sequences are used, as well as
whether CBOR or CBOR Sequences are used (see the table below).</t>
          <t>A second option is to use a more specialized binary format, such as <eref target="https://developers.google.com/protocol-buffers">Protocol
Buffers</eref> (protobuf). This format
is battle-tested, has support for optional fields and has libraries in most
programming languages. Still, it is significantly less flexible than textual JSON
or CBOR, as it relies on a separate, pre-defined schema (a .proto file). As such,
it it not possible to (easily) log new event types in protobuf files without
adjusting this schema as well, which has its own practical challenges. As qlog is
intended to be a flexible, general purpose format, this type of format was not
chosen as its basic serialization. The lower flexibility does lead to
significantly reduced file sizes. Our straightforward mapping of the qlog main
schema and QUIC/HTTP3 event types to protobuf created qlog files 24% as large as
the raw JSON equivalents (100MB to 24MB). For this option, the file extension
.(s)qlog.protobuf <bcp14>SHOULD</bcp14> BE used. The "qlog_format" field should reflect the
different internal format, for example: "qlog_format": "protobuf".</t>
          <t>Note that binary formats can (and should) also be used in conjunction with
compression (see <xref target="compression"/>). For example, CBOR compresses well (to about 6%
of the original textual JSON size (100MB to 6MB) for both gzip and brotli) and so
does protobuf (5% (gzip) to 3% (brotli)). However, these gains are similar to the
ones achieved by simply compression the textual JSON equivalents directly (7%, see
<xref target="compression"/>). As such, since compression is still needed to achieve optimal
file size reductions event with binary formats, we feel the more flexible
compressed textual JSON options are a better default for the qlog format in
general.</t>
          <t/>
        </section>
        <section anchor="format-summary">
          <name>Overview and summary</name>
          <t>In summary, textual JSON was chosen as the main qlog format due to its high
flexibility and because its inefficiencies can be largely solved by the
utilization of compression techniques (which are needed to achieve optimal results
with other formats as well).</t>
          <t>Still, qlog implementers are free to define other qlog formats depending on their
needs and context of use. These formats should be described in their own
documents, the discussion in this document mainly acting as inspiration and
high-level guidance. Implementers are encouraged to add concrete qlog formats and
definitions to <eref target="https://github.com/quiclog/qlog">the designated public
repository</eref>.</t>
          <t>The following table provides an overview of all the discussed qlog formatting
options with examples:</t>
          <table>
            <thead>
              <tr>
                <th align="left">format</th>
                <th align="left">qlog_format</th>
                <th align="left">extension</th>
                <th align="left">media type</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">JSON <xref target="format-json"/></td>
                <td align="left">JSON</td>
                <td align="left">.qlog</td>
                <td align="left">application/qlog+json</td>
              </tr>
              <tr>
                <td align="left">JSON Text Sequences  <xref target="format-json-seq"/></td>
                <td align="left">JSON-SEQ</td>
                <td align="left">.sqlog</td>
                <td align="left">application/qlog+json-seq</td>
              </tr>
              <tr>
                <td align="left">named headers <xref target="structure-optimizations"/></td>
                <td align="left">JSON(-SEQ).namedheaders</td>
                <td align="left">.(s)qlog</td>
                <td align="left">application/qlog+json(-seq)</td>
              </tr>
              <tr>
                <td align="left">dictionary <xref target="structure-optimizations"/></td>
                <td align="left">JSON(-SEQ).dictionary</td>
                <td align="left">.(s)qlog</td>
                <td align="left">application/qlog+json(-seq)</td>
              </tr>
              <tr>
                <td align="left">CBOR <xref target="binary"/></td>
                <td align="left">JSON(-SEQ)</td>
                <td align="left">.(s)qlog.cbor</td>
                <td align="left">application/qlog+json(-seq)+cbor(-seq)</td>
              </tr>
              <tr>
                <td align="left">protobuf <xref target="binary"/></td>
                <td align="left">protobuf</td>
                <td align="left">.qlog.protobuf</td>
                <td align="left">NOT SPECIFIED BY IANA</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left"> </td>
              </tr>
              <tr>
                <td align="left">gzip <xref target="compression"/></td>
                <td align="left">no change</td>
                <td align="left">.gz suffix</td>
                <td align="left">application/gzip</td>
              </tr>
              <tr>
                <td align="left">brotli <xref target="compression"/></td>
                <td align="left">no change</td>
                <td align="left">.br suffix</td>
                <td align="left">NOT SPECIFIED BY IANA</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="conversion">
        <name>Conversion between formats</name>
        <t>As discussed in the previous sections, a qlog file can be serialized in a
multitude of formats, each of which can conceivably be transformed into or from
one another without loss of information. For example, a number of JSON-SEQ
streamed qlogs could be combined into a JSON formatted qlog for later processing.
Similarly, a captured binary qlog could be transformed to JSON for easier
interpretation and sharing.</t>
        <t>Secondly, we can also consider other structured logging approaches that contain
similar (though typically not identical) data to qlog, like raw packet capture
files (for example .pcap files from tcpdump) or endpoint-specific logging formats
(for example the NetLog format in Google Chrome). These are sometimes the only
options, if an implementation cannot or will not support direct qlog output for
any reason, but does provide other internal or external (e.g., SSLKEYLOGFILE
export to allow decryption of packet captures) logging options For this second
category, a (partial) transformation from/to qlog can also be defined.</t>
        <t>As such, when defining a new qlog serialization format or wanting to utilize
qlog-compatible tools with existing codebases lacking qlog support, it is
recommended to define and provide a concrete mapping from one format to default
JSON-serialized qlog. Several of such mappings exist. Firstly,
[pcap2qlog]((https://github.com/quiclog/pcap2qlog) transforms QUIC and HTTP/3
packet capture files to qlog. Secondly,
<eref target="https://github.com/quiclog/qvis/tree/master/visualizations/src/components/filemanager/netlogconverter">netlog2qlog</eref>
converts chromium's internal dictionary-encoded JSON format to qlog. Finally,
<eref target="https://github.com/quiclog/quictrace2qlog">quictrace2qlog</eref> converts the older
quictrace format to JSON qlog. Tools can then easily integrate with these
converters (either by incorporating them directly or for example using them as a
(web-based) API) so users can provide different file types with ease. For example,
the <eref target="https://qvis.edm.uhasselt.be">qvis</eref> toolsuite supports a multitude of formats
and qlog serializations.</t>
      </section>
    </section>
    <section anchor="methods-of-access-and-generation">
      <name>Methods of access and generation</name>
      <t>Different implementations will have different ways of generating and storing
qlogs. However, there is still value in defining a few default ways in which to
steer this generation and access of the results.</t>
      <section anchor="set-file-output-destination-via-an-environment-variable">
        <name>Set file output destination via an environment variable</name>
        <t>To provide users control over where and how qlog files are created, we define two
environment variables. The first, QLOGFILE, indicates a full path to where an
individual qlog file should be stored. This path <bcp14>MUST</bcp14> include the full file
extension. The second, QLOGDIR, sets a general directory path in which qlog files
should be placed. This path <bcp14>MUST</bcp14> include the directory separator character at the
end.</t>
        <t>In general, QLOGDIR should be preferred over QLOGFILE if an endpoint is prone to
generate multiple qlog files. This can for example be the case for a QUIC server
implementation that logs each QUIC connection in a separate qlog file. An
alternative that uses QLOGFILE would be a QUIC server that logs all connections in
a single file and uses the "group_id" field (<xref target="group-ids"/>) to allow post-hoc
separation of events.</t>
        <t>Implementations <bcp14>SHOULD</bcp14> provide support for QLOGDIR and <bcp14>MAY</bcp14> provide support for
QLOGFILE.</t>
        <t>When using QLOGDIR, it is up to the implementation to choose an appropriate naming
scheme for the qlog files themselves. The chosen scheme will typically depend on
the context or protocols used. For example, for QUIC, it is recommended to use the
Original Destination Connection ID (ODCID), followed by the vantage point type of
the logging endpoint. Examples of all options for QUIC are shown in
<xref target="qlogdir-example"/>.</t>
        <figure anchor="qlogdir-example">
          <name>Environment variable examples for a QUIC implementation</name>
          <artwork><![CDATA[
Command: QLOGFILE=/srv/qlogs/client.qlog quicclientbinary

Should result in the the quicclientbinary executable logging a
single qlog file named client.qlog in the /srv/qlogs directory.
This is for example useful in tests when the client sets up
just a single connection and then exits.

Command: QLOGDIR=/srv/qlogs/ quicserverbinary

Should result in the quicserverbinary executable generating
several logs files, one for each QUIC connection.
Given two QUIC connections, with ODCID values "abcde" and
"12345" respectively, this would result in two files:
/srv/qlogs/abcde_server.qlog
/srv/qlogs/12345_server.qlog

Command: QLOGFILE=/srv/qlogs/server.qlog quicserverbinary

Should result in the the quicserverbinary executable logging
a single qlog file named server.qlog in the /srv/qlogs directory.
Given that the server handled two QUIC connections before it was
shut down, with ODCID values "abcde" and "12345" respectively,
this would result in event instances in the qlog file being
tagged with the "group_id" field with values "abcde" and "12345".
]]></artwork>
        </figure>
      </section>
      <section anchor="access-logs-via-a-well-known-endpoint">
        <name>Access logs via a well-known endpoint</name>
        <t>After generation, qlog implementers <bcp14>MAY</bcp14> make available generated logs and traces
on an endpoint (typically the server) via the following .well-known URI:</t>
        <ul empty="true">
          <li>
            <t>.well-known/qlog/IDENTIFIER.extension</t>
          </li>
        </ul>
        <t>The IDENTIFIER variable depends on the context and the protocol. For example for
QUIC, the lowercase Original Destination Connection ID (ODCID) is recommended, as
it can uniquely identify a connection. Additionally, the extension depends on the
chosen format (see <xref target="format-summary"/>). For example, for a QUIC connection with
ODCID "abcde", the endpoint for fetching its default JSON-formatted .qlog file
would be:</t>
        <ul empty="true">
          <li>
            <t>.well-known/qlog/abcde.qlog</t>
          </li>
        </ul>
        <t>Implementers <bcp14>SHOULD</bcp14> allow users to fetch logs for a given connection on a 2nd,
separate connection. This helps prevent pollution of the logs by fetching them
over the same connection that one wishes to observe through the log. Ideally, for
the QUIC use case, the logs should also be approachable via an HTTP/2 or HTTP/1.1
endpoint (i.e., on TCP port 443), to for example aid debugging in the case where
QUIC/UDP is blocked on the network.</t>
        <t>qlog implementers <bcp14>SHOULD NOT</bcp14> enable this .well-known endpoint in typical
production settings to prevent (malicious) users from downloading logs from other
connections. Implementers are advised to disable this endpoint by default and
require specific actions from the end users to enable it (and potentially qlog
itself). Implementers <bcp14>MUST</bcp14> also take into account the general privacy and security
guidelines discussed in <xref target="privacy"/> before exposing qlogs to outside actors.</t>
      </section>
    </section>
    <section anchor="tooling">
      <name>Tooling requirements</name>
      <t>Tools ingestion qlog <bcp14>MUST</bcp14> indicate which qlog version(s), qlog format(s),
compression methods and potentially other input file formats (for example .pcap)
they support. Tools <bcp14>SHOULD</bcp14> at least support .qlog files in the default JSON format
(<xref target="format-json"/>). Additionally, they <bcp14>SHOULD</bcp14> indicate exactly which values for and
properties of the name (category and type) and data fields they look for to
execute their logic. Tools <bcp14>SHOULD</bcp14> perform a (high-level) check if an input qlog
file adheres to the expected qlog schema. If a tool determines a qlog file does
not contain enough supported information to correctly execute the tool's logic, it
<bcp14>SHOULD</bcp14> generate a clear error message to this effect.</t>
      <t>Tools <bcp14>MUST NOT</bcp14> produce breaking errors for any field names and/or values in the
qlog format that they do not recognize. Tools <bcp14>SHOULD</bcp14> indicate even unknown event
occurrences within their context (e.g., marking unknown events on a timeline for
manual interpretation by the user).</t>
      <t>Tool authors should be aware that, depending on the logging implementation, some
events will not always be present in all traces. For example, using a circular
logging buffer of a fixed size, it could be that the earliest events (e.g.,
connection setup events) are later overwritten by "newer" events. Alternatively,
some events can be intentionally omitted out of privacy or file size
considerations. Tool authors are encouraged to make their tools robust enough to
still provide adequate output for incomplete logs.</t>
    </section>
    <section anchor="privacy">
      <name>Security and privacy considerations</name>
      <t>Protocols such as TLS <xref target="RFC8446"/> and QUIC <xref target="RFC9000"/> provide varying degrees
of secure protection for the wire image <xref target="RFC8546"/>. There is inevitably
tension between security and observability, when logging can reveal aspects of
the wire image, that would ordinarily be protected. This tension equally applies
to any privacy considerations that build on security properties, especially if
data can be correlated across data sources.</t>
      <t>qlog operators and implementers should be mindful of the security and privacy
risks inherent in handling qlog data. This includes but is not limited to
logging, storing, or using the data. Data might be considered as non-sensitive,
potentially-sensitive, or sensitive; applying the considerations in this section
may produce different risks depending on the nature of the data itself, or its
handling. However, in many cases the largest risk factors arise from data that
can be considered as potenially-sensitive or sensitive.</t>
      <t>The following is a non-exhaustive list of such fields and types of data that can
be carried in qlog data:</t>
      <ul spacing="normal">
        <li>IP addresses and transport protocol port numbers, which can be used to
uniquely identify individual connections, endpoints, and potentially users.</li>
        <li>Session, Connection, or User identifiers which can be used to correlate
nominally separate contexts. For example, QUIC Connection IDs can be used to
identify and track users across geographical networks <xref section="9.5" sectionFormat="of" target="RFC9000"/>).</li>
        <li>Stored State which can be used to correlate individual connections or sessions
over time. Examples include QUIC address validation and retry tokens, TLS
session tickets, and HTTP cookies.</li>
        <li>Decryption keys, passwords, and tokens which can be used with other data
sources (e.g., captures of encrypted packets) to correlate qlog data to a
specific connection or user or leak additional information. Examples include
TLS decryption keys and HTTP-level API access or authorization tokens.</li>
        <li>Data that can be used to correlate qlogs to other data sources (e.g., captures
of encrypted packets). Examples include high-resolution event timestamps or
inter-event timings, event counts, packet and frame sizes.</li>
        <li>Full or partial encrypted raw packet and frame payloads, which can be used
with other data sources (e.g., captures of encrypted packets) to correlate
qlog data to a specific connection or session.</li>
        <li>Full or partial plaintext raw packet and frame payloads (e.g., HTTP Field
values, HTTP response data, TLS SNI field values), which can contain directly
sensitive information.</li>
      </ul>
      <t>The simplest and most extreme form of protection against abuse of this
information is the complete deletion of a given field, which is equivalent to
not logging the field(s) in question. While deletion completely protects the
data in the deleted fields from the risk of compromise, it also reduces the
utility of the dataset as a whole. As such, a balance should be found between
logging these fields and the potential risks inherent in their (involuntary)
disclosure. This balance depends on the use case at hand (e.g., research
datasets might have different requirements to live operational troubleshooting).
Capturing the minimal amount of data required for a specific purpose can help to
minimize the risks associated with data usage. qlog implementations that provide
fine-grained control over the inclusion of data fields, ideally on a
per-use-case or per-connection basis, improve the ability to minimize data.</t>
      <t>Any data that is determined to be necessary for a use case at hand could be
logged or captured. As per <xref target="RFC6973"/>, operators must be aware that such data
will be at risk of compromise. As such, measures should be taken to firstly
reduce the risk of compromise and secondly reduce the risk of abuse of
compromised data. While a full discussion of both aspects is out of scope for
this document, the following paragraphs discuss high-level considerations that
can be applied to qlog data.</t>
      <t>To reduce the risk of compromise, operators can take measures such as: limiting
the length of time that data is stored, encrypting data in transit and at rest,
limiting access rights to the data, and auditing data usage practices. qlog
deployments that provide integrated options for automated or manual data
deletion and (aggressive) aggregation, improve the ability to minimize the risk
of compromise.</t>
      <t>To reduce the risk of data abuse after compromise, data can be anonymized,
pseudonymized, otherwise permutated/replaced, truncated, (re-)encrypted, or
aggregated. A partial discussion of applicable techniques (especially for IP
address information) can be found in <xref section="B" sectionFormat="of" target="DNS-PRIVACY"/>.
Operators should, however, be aware that many of these techniques have been
shown to be insufficient to safeguard user privacy and/or to protect user
identity, especially if a qlog data set is large or easily correlated against
other data sources.</t>
      <t>Finally, qlog operators should consider the interplay between their use case
needs and end user rights or preferences. While active user participation (as
indicated by <xref target="RFC6973"/>) on a per-qlog basis is difficult, as logs are often
captured out-of-band to the main user interaction and intent, general user
expectations should be taken into account. qlog deployments that provide
mechanisms to integrate the capture, storage and removal of qlogs with more
general, often pre-existing, user preference and privacy control systems,
improve the ability to protect data sensitive or confidential to the end user.
In qlog, these data are typically (but not exclusively) contained in fields of
the RawInfo type (see <xref target="raw-info"/>). qlog users should thus be particularly
hesitant to include these fields for all but the most stringent use cases.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>TODO: primarily the .well-known URI</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="JSON">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="I-JSON">
          <front>
            <title>The I-JSON Message Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="March" year="2015"/>
            <abstract>
              <t>I-JSON (short for "Internet JSON") is a restricted profile of JSON designed to maximize interoperability and increase confidence that software can process it successfully with predictable results.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7493"/>
          <seriesInfo name="DOI" value="10.17487/RFC7493"/>
        </reference>
        <reference anchor="JSON-Text-Sequences">
          <front>
            <title>JavaScript Object Notation (JSON) Text Sequences</title>
            <author fullname="N. Williams" initials="N." surname="Williams">
              <organization/>
            </author>
            <date month="February" year="2015"/>
            <abstract>
              <t>This document describes the JavaScript Object Notation (JSON) text sequence format and associated media type "application/json-seq".  A JSON text sequence consists of any number of JSON texts, all encoded in UTF-8, each prefixed by an ASCII Record Separator (0x1E), and each ending with an ASCII Line Feed character (0x0A).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7464"/>
          <seriesInfo name="DOI" value="10.17487/RFC7464"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="CDDL">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz">
              <organization/>
            </author>
            <author fullname="C. Vigano" initials="C." surname="Vigano">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049).  Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC6839">
          <front>
            <title>Additional Media Type Structured Syntax Suffixes</title>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov">
              <organization/>
            </author>
            <date month="January" year="2013"/>
            <abstract>
              <t>A content media type name sometimes includes partitioned meta- information distinguished by a structured syntax to permit noting an attribute of the media as a suffix to the name.  This document defines several structured syntax suffixes for use with media type registrations.  In particular, it defines and registers the "+json", "+ber", "+der", "+fastinfoset", "+wbxml" and "+zip" structured syntax suffixes, and provides a media type structured syntax suffix registration form for the "+xml" structured syntax suffix.  This document  is not an Internet Standards Track specification; it is published for  informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6839"/>
          <seriesInfo name="DOI" value="10.17487/RFC6839"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC7464">
          <front>
            <title>JavaScript Object Notation (JSON) Text Sequences</title>
            <author fullname="N. Williams" initials="N." surname="Williams">
              <organization/>
            </author>
            <date month="February" year="2015"/>
            <abstract>
              <t>This document describes the JavaScript Object Notation (JSON) text sequence format and associated media type "application/json-seq".  A JSON text sequence consists of any number of JSON texts, all encoded in UTF-8, each prefixed by an ASCII Record Separator (0x1E), and each ending with an ASCII Line Feed character (0x0A).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7464"/>
          <seriesInfo name="DOI" value="10.17487/RFC7464"/>
        </reference>
        <reference anchor="RFC8091">
          <front>
            <title>A Media Type Structured Syntax Suffix for JSON Text Sequences</title>
            <author fullname="E. Wilde" initials="E." surname="Wilde">
              <organization/>
            </author>
            <date month="February" year="2017"/>
            <abstract>
              <t>Structured syntax suffixes for media types allow other media types to build on them and make it explicit that they are built on an existing media type as their foundation.  This specification defines and registers "+json-seq" as a structured syntax suffix for JSON text sequences.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8091"/>
          <seriesInfo name="DOI" value="10.17487/RFC8091"/>
        </reference>
        <reference anchor="RFC4180">
          <front>
            <title>Common Format and MIME Type for Comma-Separated Values (CSV) Files</title>
            <author fullname="Y. Shafranovich" initials="Y." surname="Shafranovich">
              <organization/>
            </author>
            <date month="October" year="2005"/>
            <abstract>
              <t>This RFC documents the format used for Comma-Separated Values (CSV) files and registers the associated MIME type "text/csv".  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4180"/>
          <seriesInfo name="DOI" value="10.17487/RFC4180"/>
        </reference>
        <reference anchor="RFC1952">
          <front>
            <title>GZIP file format specification version 4.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch">
              <organization/>
            </author>
            <date month="May" year="1996"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that is compatible with the widely used GZIP utility.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1952"/>
          <seriesInfo name="DOI" value="10.17487/RFC1952"/>
        </reference>
        <reference anchor="RFC7932">
          <front>
            <title>Brotli Compressed Data Format</title>
            <author fullname="J. Alakuijala" initials="J." surname="Alakuijala">
              <organization/>
            </author>
            <author fullname="Z. Szabadka" initials="Z." surname="Szabadka">
              <organization/>
            </author>
            <date month="July" year="2016"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7932"/>
          <seriesInfo name="DOI" value="10.17487/RFC7932"/>
        </reference>
        <reference anchor="RFC7049">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="October" year="2013"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation.  These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7049"/>
          <seriesInfo name="DOI" value="10.17487/RFC7049"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9000">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="RFC6973">
          <front>
            <title>Privacy Considerations for Internet Protocols</title>
            <author fullname="A. Cooper" initials="A." surname="Cooper">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <author fullname="J. Peterson" initials="J." surname="Peterson">
              <organization/>
            </author>
            <author fullname="J. Morris" initials="J." surname="Morris">
              <organization/>
            </author>
            <author fullname="M. Hansen" initials="M." surname="Hansen">
              <organization/>
            </author>
            <author fullname="R. Smith" initials="R." surname="Smith">
              <organization/>
            </author>
            <date month="July" year="2013"/>
            <abstract>
              <t>This document offers guidance for developing privacy considerations for inclusion in protocol specifications.  It aims to make designers, implementers, and users of Internet protocols aware of privacy-related design choices.  It suggests that whether any individual RFC warrants a specific privacy considerations section will depend on the document's content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6973"/>
          <seriesInfo name="DOI" value="10.17487/RFC6973"/>
        </reference>
        <reference anchor="DNS-PRIVACY">
          <front>
            <title>Recommendations for DNS Privacy Service Operators</title>
            <author fullname="S. Dickinson" initials="S." surname="Dickinson">
              <organization/>
            </author>
            <author fullname="B. Overeinder" initials="B." surname="Overeinder">
              <organization/>
            </author>
            <author fullname="R. van Rijswijk-Deij" initials="R." surname="van Rijswijk-Deij">
              <organization/>
            </author>
            <author fullname="A. Mankin" initials="A." surname="Mankin">
              <organization/>
            </author>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document presents operational, policy, and security considerations for DNS recursive resolver operators who choose to offer DNS privacy services.  With these recommendations, the operator can make deliberate decisions regarding which services to provide, as well as understanding how those decisions and the alternatives impact the privacy of users. </t>
              <t>This document also presents a non-normative framework to assist writers of a Recursive operator Privacy Statement, analogous to DNS Security Extensions (DNSSEC) Policies and DNSSEC Practice Statements described in RFC 6841.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="232"/>
          <seriesInfo name="RFC" value="8932"/>
          <seriesInfo name="DOI" value="10.17487/RFC8932"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="QLOG-QUIC">
          <front>
            <title>QUIC event definitions for qlog</title>
            <author fullname="Robin Marx" initials="R." surname="Marx">
              <organization>Akamai</organization>
            </author>
            <author fullname="Luca Niccolini" initials="L." surname="Niccolini">
              <organization>Meta</organization>
            </author>
            <author fullname="Marten Seemann" initials="M." surname="Seemann">
              <organization>Protocol Labs</organization>
            </author>
            <author fullname="Lucas Pardue" initials="L." surname="Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="24" month="October" year="2022"/>
            <abstract>
              <t>   This document describes concrete qlog event definitions and their
   metadata for QUIC events.  These events can then be embedded in the
   higher level schema defined in [QLOG-MAIN].

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-qlog-quic-events-03"/>
        </reference>
        <reference anchor="QLOG-H3">
          <front>
            <title>HTTP/3 and QPACK qlog event definitions</title>
            <author fullname="Robin Marx" initials="R." surname="Marx">
              <organization>Akamai</organization>
            </author>
            <author fullname="Luca Niccolini" initials="L." surname="Niccolini">
              <organization>Meta</organization>
            </author>
            <author fullname="Marten Seemann" initials="M." surname="Seemann">
              <organization>Protocol Labs</organization>
            </author>
            <author fullname="Lucas Pardue" initials="L." surname="Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="24" month="October" year="2022"/>
            <abstract>
              <t>   This document describes concrete qlog event definitions and their
   metadata for HTTP/3 and QPACK-related events.  These events can then
   be embedded in the higher level schema defined in [QLOG-MAIN].

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-qlog-h3-events-03"/>
        </reference>
        <reference anchor="RFC8742">
          <front>
            <title>Concise Binary Object Representation (CBOR) Sequences</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document describes the Concise Binary Object Representation (CBOR) Sequence format and associated media type "application/cbor-seq".  A CBOR Sequence consists of any number of encoded CBOR data items, simply concatenated in sequence.</t>
              <t>Structured syntax suffixes for media types allow other media types to build on them and make it explicit that they are built on an existing media type as their foundation.  This specification defines and registers "+cbor-seq" as a structured syntax suffix for CBOR Sequences.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8742"/>
          <seriesInfo name="DOI" value="10.17487/RFC8742"/>
        </reference>
        <reference anchor="RFC8546">
          <front>
            <title>The Wire Image of a Network Protocol</title>
            <author fullname="B. Trammell" initials="B." surname="Trammell">
              <organization/>
            </author>
            <author fullname="M. Kuehlewind" initials="M." surname="Kuehlewind">
              <organization/>
            </author>
            <date month="April" year="2019"/>
            <abstract>
              <t>This document defines the wire image, an abstraction of the information available to an on-path non-participant in a networking protocol.  This abstraction is intended to shed light on the implications that increased encryption has for network functions that use the wire image.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8546"/>
          <seriesInfo name="DOI" value="10.17487/RFC8546"/>
        </reference>
      </references>
    </references>
    <section anchor="change-log">
      <name>Change Log</name>
      <section anchor="since-draft-ietf-quic-qlog-main-schema-04">
        <name>Since draft-ietf-quic-qlog-main-schema-04:</name>
        <ul spacing="normal">
          <li>Updated RawInfo definition and guidance (#243)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-qlog-main-schema-03">
        <name>Since draft-ietf-quic-qlog-main-schema-03:</name>
        <ul spacing="normal">
          <li>Added security and privacy considerations discussion (#252)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-qlog-main-schema-02">
        <name>Since draft-ietf-quic-qlog-main-schema-02:</name>
        <ul spacing="normal">
          <li>No changes - new draft to prevent expiration</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-qlog-main-schema-01">
        <name>Since draft-ietf-quic-qlog-main-schema-01:</name>
        <ul spacing="normal">
          <li>Change the data definition language from TypeScript to CDDL (#143)</li>
        </ul>
      </section>
      <section anchor="since-draft-ietf-quic-qlog-main-schema-00">
        <name>Since draft-ietf-quic-qlog-main-schema-00:</name>
        <ul spacing="normal">
          <li>Changed the streaming serialization format from NDJSON to JSON Text Sequences
(#172)</li>
          <li>Added Media Type definitions for various qlog formats (#158)</li>
          <li>Changed to semantic versioning</li>
        </ul>
      </section>
      <section anchor="since-draft-marx-qlog-main-schema-draft-02">
        <name>Since draft-marx-qlog-main-schema-draft-02:</name>
        <ul spacing="normal">
          <li>These changes were done in preparation of the adoption of the drafts by the QUIC
working group (#137)</li>
          <li>Moved RawInfo, Importance, Generic events and Simulation events to this document.</li>
          <li>Added basic event definition guidelines</li>
          <li>Made protocol_type an array instead of a string (#146)</li>
        </ul>
      </section>
      <section anchor="since-draft-marx-qlog-main-schema-01">
        <name>Since draft-marx-qlog-main-schema-01:</name>
        <ul spacing="normal">
          <li>
            <t>Decoupled qlog from the JSON format and described a mapping instead (#89)
            </t>
            <ul spacing="normal">
              <li>Data types are now specified in this document and proper definitions for
fields were added in this format</li>
              <li>64-bit numbers can now be either strings or numbers, with a preference for
numbers (#10)</li>
              <li>binary blobs are now logged as lowercase hex strings (#39, #36)</li>
              <li>added guidance to add length-specifiers for binary blobs (#102)</li>
            </ul>
          </li>
          <li>Removed "time_units" from Configuration. All times are now in ms instead (#95)</li>
          <li>Removed the "event_fields" setup for a more straightforward JSON format
(#101,#89)</li>
          <li>Added a streaming option using the NDJSON format (#109,#2,#106)</li>
          <li>Described optional optimization options for implementers (#30)</li>
          <li>Added QLOGDIR and QLOGFILE environment variables, clarified the .well-known URL
usage (#26,#33,#51)</li>
          <li>Overall tightened up the text and added more examples</li>
        </ul>
      </section>
      <section anchor="since-draft-marx-qlog-main-schema-00">
        <name>Since draft-marx-qlog-main-schema-00:</name>
        <ul spacing="normal">
          <li>All field names are now lowercase (e.g., category instead of CATEGORY)</li>
          <li>Triggers are now properties on the "data" field value, instead of separate field
types (#23)</li>
          <li>group_ids in common_fields is now just also group_id</li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Much of the initial work by Robin Marx was done at the Hasselt and KU Leuven
Universities.</t>
      <t>Thanks to Jana Iyengar, Brian Trammell, Dmitri Tikhonov, Stephen Petrides, Jari
Arkko, Marcus Ihlar, Victor Vasiliev, Mirja Kuehlewind, and Jeremy Laine for
their feedback and suggestions.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+292ZYb2ZEt+H6+wgu8WhlIAYiBwQm6KRWTZEqh4iSSKV01
KxfpABwRLgJwyN0RQSiK9S33tf+hn/r+WJttMzuDA0EyU9X9cFdrVSUDgA9n
sGOzbRsOh64t20Uxzp7l5SpbVOfn5eo8a6YXxTLP5lWd/Z2+c7NqusqXdNWs
zuftsCza+fDvm3I65F+HS7p1KLcMj+64ad4W51W9HWdNO3OuXNfjrK03TXty
dPTg6MTldZGPszd1vmrWVd26q6r+cF5Xm/U4+9OPZ4/ch2JLX83G2dmqLepV
0Q4f81uda9p8NXuXL6oVjWRbNG5djrO3bTUdZDTAcjUrVu0ga+iZdTFv6K/t
Uv9o63JKP02r5TrXP5Z0Mf1UrhblqvjJuXzTXlT12GXZkP4/ox+acfZqROtS
f8QXsgCvqgmtk/+yqs/H2cMPOS0BPtMSlItxVi/pgn/N8f2IXobf6orXuZiV
bVWnr3k6yp6X02lFQymjdz3dTPPOD3jfs6LN47ctVnbNvy7pp6944bNR9rqg
u1er6HU0qbZYJT/gdS/rita4WmRP80kTv3eJG/51rb+PdA26r/VzfJnXs03R
mWATf433PVpUm9l8QWSSTJKvXePS0cnp6N6/nvP3++fqVhXtQFteFmOiv9U8
fMqyPz198fsh09kY950NH4865Iy/ikumD2c3/OH2jZdf3PYXu+FwmNEitTVR
mXNvLsqGKXPDtJbNimZal5OiyfLsojy/GC7otkV81PIMFE5zLP9RzPxhlOHT
sVos6Ft+5yjL8Gz5JaMfqqsmK/JmmzUXec03VfNslrd5Rs/L2osim9Kha8tq
xT/UxabJJ4vCXZbNJl+U/5Bf+NJZMdnIW9uqWjQjek+xZ7R0BNpkcmVD60zE
MKMRtlU2KTKjimF+vqqatpwyydH+EXPwtzVZsy6m5XybXVRXGKbOqLmoNouZ
o8dsGnoiL45cWU79gzE/GaCNipZ20VT6EP/iAWY2zVc0LFcX67po6N30WJoF
P7n4mC/XiyL74+sXz4k1NJdEhvKWyWY+kk1dlrMZLZi7xUyprmabKS8Zb3FR
F/zi6aau6amLLe3iIp9+4HWmN9KelPSdrPcg3V9arXVFq2Yb7WTco+wJ5kq7
usX4eF1oGWgG9B/eV79HPK/iMl9saAPp47KaEb/M/lJMnC1SYwRQ0pSKGm9Y
TWkkJe8ZPY1P/Kyc08JuFi1vXTVpWRIQDdMcN7XQYePaC9oWeuplOSuyfFb8
fcMb6c9WJUvZ5s2HJluUH7D/NOUlHcyqpaHzBPJVvtg2ZTPqHo28XDb8bv/8
PSTH8yDaXhUNXcqDCeeJpufOi1VR5wta+221aW9Y/QsWPfgzPz+vi3MiIPqE
R6fzTbYDY91zBppAioHUrsr2wp9cmltdFjinbod+ZWtsYxsiTr5lVsxJHoE2
K5pXHZ2Vg6YoYoJ119eemX36hF/4TzxWf/rDbf3hD2/evDy8jZ/+9PLho38b
1sUi5zMA1uXw1pK3seljd4rsvKLVpGVsb5x9vGE0Qrq9aJSJzHOiJjel9SZG
WNQlr41uW5FPwwLNS1p+Oewkk1egvAM+7PIVnX9sUFs5/bVPu7ihB+BR2HNa
UX6n8TThWwUtlxx4YXzMlfgO/m5W5Atn20R7U1dLIrhLYptFu8X5ouNQ8GG+
aatohR42GMegwwZ1lA3/MS3WrVyVkZC7LOqGlpcmPchYSIM5l6vpYsNfDxyN
xRMlfyEbk0EvsqPO18iKEf+gGSsXytpierEq/74pGt07lhG2UboMDa0Us3oh
LWIC2+wq3xJRFaPz0UB536PvX7waeNY3cEU77Sv97xFj1WqhjLsiIb1eVFsi
u3/hJ3336odH90/uPPj0iRkNL8KEtoTo9V/Ohvb7vdMHt/l3nhiuIaWN1CXe
QuJi5SUEttMHDt8UH9vha+I6Ba1rI/ffPf30iSb82+x51fK+Z/StagCktCwK
Zpd1sawuCxUtLCYzFkHndb6+aLwUawpZx0lBR6Vw681kUU6xDfT4H4piNmGG
Dsoum+mmaSAtie9fFQvSP4hIW/f2om3Xzfjw8JwoazNhveSQdYSr80PejZ8O
Pv87LfOrgthq3fCDXT4j0SyilDRY4gL0B8+hJ9P7phFFvEdvFsL+8dVTUSFW
2WY9bKvhjNmzEp2zY2ybSNN6RARaF3SNMhOWBRmLcFob8AF/9r3Id3xGqg3Y
Hl21XDJdLvLV+SY/L/x5m1cbWqjPrAjNFlM+vHFN/BXMi27d4v3FmIgh0bD5
XGCA17f4EL1rt+ui+SSET6ZDxrZDk/We/fj6TW8g/2bPX+DvV0+IQb568pj/
fv2Hh0+f+j+cXvH6Dy9+fPo4/BXufPTi2bMnzx/LzfRtlnzles8e/rUn1Nx7
8fLN2YvnD5/2dvUkphrRj3it6zVvAa1W4+xY4Xh+/+jl//0/j0/5OBFNnxwf
00nSD/eP7xHZZ1cXxUrehlMoH4lCti5fr4u85qeQAkGbsi5bUooGzIOIq16t
MtZYaF2/fcsr89M4+++T6fr49Lf6BU84+dLWLPkSa7b7zc7Nsoh7vtrzGr+a
yfedlU7H+/CvyWdb9+hLpp9b2Wsh4SDliFoqFbXCaFVwMVP2mgAvGi0hmGmQ
wiwF+CjyAaIz6h7zPY/9k8lIkgPB+/Xo8eOn4IV3j4+IV3U46aYR3SWbkJoy
dc2WZMdH7GJQdt+3xPjeD7L3G6IX/ne+qPL29on/8+4p/zkhofce9ODeE2t/
n+FQYNOJRy34X37s+5GKZr5nxFJEbqIPJHiKj+v3kGBkS7mKtMWcWE0jA3r/
n++zzeqK+Cakkf068PbF+//2nlgJaZNgjtBrdUYiYXdXg4TobFbKuV5su5JU
NqeJODe/l5hvSw/D7KBVTclMLNstmXn/+Z//mU1JSXe/yfhFxCJ5yVhPMZUq
Nx3r7ulwwvrvCoKUbpiQxsjcE2LRK3XzsljMeAFJUq5aPbZLkhDEk8WjwBLq
N6KFf1yTzChbxy+9n30nL8cSZ8f48vhu+u0Jvr19kn57im/vnqbf3nd4DUiV
1LDVOZSXq6KGScBjEYvvgpj5jChnCduBRGXF9thk2xYNPcA4/Ti7fzIjVfXo
5N7t2w8G2el0NpnPHkzmR3QRdoH+b0Vij+8tRHXnbVDawfJmk3KV11t79wHe
cciWb58eUqpywPoElmdFNgDLcfHAtCUbnzRYvfu7jKk8UxrMegdvj4YP8uH8
p+uTT/1ve7y17nqc3eLtHQoJDEECQxpSBv/Vd71ATDJAviA68U2PRMRDOgpt
uaTdo5VQ04g+emWYTanC60TVfM6KZJ8JBUyAJTNrrkJL/vwJlyfSKBcL4gh0
glgdbarFRlWIF1DkO3xEVFFwIDHPmDfzyIdhjUjlBzPqC8U7HVijdrTah9Co
X5KKUrQya2gEeSDkZrNmRxtU+5+nLcERwHvzVaoSS2D2BWZmjGEjlAtMI8m9
Kxbp1az9uEjxv2JZSUQtU2y2uARMgNanLi6U1dBVdPq/zd7/jkzXv73PxvJo
+puGCkpcC1nwNW9oeZ6TsXKcHWb29wnfkxN3U+8IzZ4J/qpSNnOgj1L9piix
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

-->

</rfc>
