To get rows in multilevel reports, use the command report/select_result_rows:
svc=report/select_result_rows¶ms={"tableIndex":<int>, "config":{ "type":<text>, "data":{} }}
You can find an example of this request in the sample Reports.
Name | Description |
---|---|
tableIndex | table index |
config | configuration |
type | request type: range - ordered sequence of rows; row - row |
data | data for configuration |
If the parameter type is set as range, then data has the following format:
"data":{ "from":<uint>, "to":<uint>, "level":<uint>, "flat":<int> }
Where,
If the parameter type is set as row, then data has the following format:
"data":{ "rows":[<int>], "level":<uint>, "flat":<int> }
Where,
[ { "n":<uint>, /* row index (from 0) */ "i1":<uint>, /* number of first message in specified interval */ "i2":<uint>, /* number of last message in specified interval */ "t1":<uint>, /* time of first message in specified interval */ "t2":<uint>, /* time of last message in specified interval */ "d":<int>, /* quantity of rows with next nesting level */ "c":[ /* cells array */ <text>, /* text value of cell */ { /* or object */ "t":<text>, /* formatted cell value */ "v":<double>, /* original cell value */ "vt":<double>, /* value type */ "y":<double>, /* latitude */ "x":<double> /* longitude */ } ], "r":[ /* holds subrows which corresponds to requested nesting level */ { /* set of fields will be the same as parent row has */ "n":<uint>, "i1":<uint>, "i2":<uint>, ... } ] } ]
Value types described in this article.
|