package gapi-ocaml

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

Module RealtimeData.QuerySource

Sourcetype t = {
  1. dimensions : string;
    (*

    List of real time dimensions.

    *)
  2. filters : string;
    (*

    Comma-separated list of dimension or metric filters.

    *)
  3. ids : string;
    (*

    Unique table ID.

    *)
  4. max_results : int;
    (*

    Maximum results per page.

    *)
  5. metrics : string list;
    (*

    List of real time metrics.

    *)
  6. sort : string list;
    (*

    List of dimensions or metrics based on which real time data is sorted.

    *)
}
Sourceval dimensions : (t, string) GapiLens.t
Sourceval filters : (t, string) GapiLens.t
Sourceval ids : (t, string) GapiLens.t
Sourceval max_results : (t, int) GapiLens.t
Sourceval metrics : (t, string list) GapiLens.t
Sourceval sort : (t, string list) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list