module PageStats:sig..end
type t = {
|
cssResponseBytes : |
(* |
Number of uncompressed response bytes for CSS resources on the page.
| *) |
|
flashResponseBytes : |
(* |
Number of response bytes for flash resources on the page.
| *) |
|
htmlResponseBytes : |
(* |
Number of uncompressed response bytes for the main HTML document and all iframes on the page.
| *) |
|
imageResponseBytes : |
(* |
Number of response bytes for image resources on the page.
| *) |
|
javascriptResponseBytes : |
(* |
Number of uncompressed response bytes for JS resources on the page.
| *) |
|
numberCssResources : |
(* |
Number of CSS resources referenced by the page.
| *) |
|
numberHosts : |
(* |
Number of unique hosts referenced by the page.
| *) |
|
numberJsResources : |
(* |
Number of JavaScript resources referenced by the page.
| *) |
|
numberResources : |
(* |
Number of HTTP resources loaded by the page.
| *) |
|
numberStaticResources : |
(* |
Number of static (i.e. cacheable) resources on the page.
| *) |
|
otherResponseBytes : |
(* |
Number of response bytes for other resources on the page.
| *) |
|
textResponseBytes : |
(* |
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 : |
(* |
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