Result.PageStats
type t = {
cssResponseBytes : int64;
Number of uncompressed response bytes for CSS resources on the page.
*)flashResponseBytes : int64;
Number of response bytes for flash resources on the page.
*)htmlResponseBytes : int64;
Number of uncompressed response bytes for the main HTML document and all iframes on the page.
*)imageResponseBytes : int64;
Number of response bytes for image resources on the page.
*)javascriptResponseBytes : int64;
Number of uncompressed response bytes for JS resources on the page.
*)numberCssResources : int;
Number of CSS resources referenced by the page.
*)numberHosts : int;
Number of unique hosts referenced by the page.
*)numberJsResources : int;
Number of JavaScript resources referenced by the page.
*)numberResources : int;
Number of HTTP resources loaded by the page.
*)numberStaticResources : int;
Number of static (i.e. cacheable) resources on the page.
*)otherResponseBytes : int64;
Number of response bytes for other resources on the page.
*)textResponseBytes : int64;
Number of uncompressed response bytes for text resources not covered by other statistics (i.e non-HTML, non-script, non-CSS resources) on the page.
*)totalRequestBytes : int64;
Total size of all request bytes sent by the page.
*)}
val cssResponseBytes : (t, int64) GapiLens.t
val flashResponseBytes : (t, int64) GapiLens.t
val htmlResponseBytes : (t, int64) GapiLens.t
val imageResponseBytes : (t, int64) GapiLens.t
val javascriptResponseBytes : (t, int64) GapiLens.t
val numberCssResources : (t, int) GapiLens.t
val numberHosts : (t, int) GapiLens.t
val numberJsResources : (t, int) GapiLens.t
val numberResources : (t, int) GapiLens.t
val numberStaticResources : (t, int) GapiLens.t
val otherResponseBytes : (t, int64) GapiLens.t
val textResponseBytes : (t, int64) GapiLens.t
val totalRequestBytes : (t, int64) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t