[HAR] - correction in spec

So I noticed that the 1.2 HAR spec labels the "timing" field in the Entries section as:


time [number] - Total elapsed time of the request in milliseconds. This is the sum of all timings available in the timings object (i.e. not including -1 values) .


This is misleading and incorrect as I have attached my example where I get these values

  *   "time": 322.7780000306666
  *
"timings": {
          "blocked": 0,
          "dns": 0,
          "connect": 170.783000008669,
          "send": 0.5499999970199951,
          "wait": 146.941000013612,
          "receive": 4.5040000113655765,
          "ssl": 137.33599998522573
        },

As you can quick calculate the timings values are greater then 322

I have assumed that the ssl value is not part of the "time" as it is a subset of the connect time. I purpose to change the wording of the "time" spec from "This is the sum of all timings available in the timings object" to "This is the sum of all timings available in the timings object with the exception of the ssl field"

Thanks,
Spencer Fricke

Received on Wednesday, 12 April 2017 17:06:04 UTC