package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Result.PageStatsSource

Sourcetype t = {
  1. cssResponseBytes : int64;
    (*

    Number of uncompressed response bytes for CSS resources on the page.

    *)
  2. flashResponseBytes : int64;
    (*

    Number of response bytes for flash resources on the page.

    *)
  3. htmlResponseBytes : int64;
    (*

    Number of uncompressed response bytes for the main HTML document and all iframes on the page.

    *)
  4. imageResponseBytes : int64;
    (*

    Number of response bytes for image resources on the page.

    *)
  5. javascriptResponseBytes : int64;
    (*

    Number of uncompressed response bytes for JS resources on the page.

    *)
  6. numberCssResources : int;
    (*

    Number of CSS resources referenced by the page.

    *)
  7. numberHosts : int;
    (*

    Number of unique hosts referenced by the page.

    *)
  8. numberJsResources : int;
    (*

    Number of JavaScript resources referenced by the page.

    *)
  9. numberResources : int;
    (*

    Number of HTTP resources loaded by the page.

    *)
  10. numberStaticResources : int;
    (*

    Number of static (i.e. cacheable) resources on the page.

    *)
  11. otherResponseBytes : int64;
    (*

    Number of response bytes for other resources on the page.

    *)
  12. 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.

    *)
  13. totalRequestBytes : int64;
    (*

    Total size of all request bytes sent by the page.

    *)
}
Sourceval cssResponseBytes : (t, int64) GapiLens.t
Sourceval flashResponseBytes : (t, int64) GapiLens.t
Sourceval htmlResponseBytes : (t, int64) GapiLens.t
Sourceval imageResponseBytes : (t, int64) GapiLens.t
Sourceval javascriptResponseBytes : (t, int64) GapiLens.t
Sourceval numberCssResources : (t, int) GapiLens.t
Sourceval numberHosts : (t, int) GapiLens.t
Sourceval numberJsResources : (t, int) GapiLens.t
Sourceval numberResources : (t, int) GapiLens.t
Sourceval numberStaticResources : (t, int) GapiLens.t
Sourceval otherResponseBytes : (t, int64) GapiLens.t
Sourceval textResponseBytes : (t, int64) GapiLens.t
Sourceval totalRequestBytes : (t, int64) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list