monitoring_schema_get
Tech
Returns Condensed Schema for monitoring records.
Params
N/A
Return
Returns Condensed Schema entities.
Note
The Condensed Schema must be compatible with:
- Condensed Data returned by the
monitoring_live_data_get
.
Presently the web client does not support generic presentation of monitoring
records. The monitoring_schema
is therefore fixed. Attributes can be added,
but not removed.
Monitoring Schema
attribute | description |
---|---|
id* unsigned int |
The record ID |
type* 'normal'|'log' |
Type of the record |
severitySeverity |
Severity of the record |
tstamp* unsigned int |
Unix timestamp of the last whole second before the record was processed |
tstamp_microsec* unsigned int |
Microseconds between the value of tstamp and the time when the record was processed |
tstamp_diffunsigned int |
Whole seconds elapsed since the previous record was processed |
tstamp_diff_microsecunsigned int |
Microseconds between tstamp_diff and the time when the previous record was processed |
logstring |
Log - mandatory if type=log |
rec_headstring |
Record header - mandatory if type=normal |
rl_headRecord Data |
Frame radio-link header (Must be null or valid Record Data .) |
d_headRecord Data |
Frame data header (Must be null or valid Record Data .) |
payloadRecord Data |
Record payload (Must be null or valid Record Data .) |
ext_measRecord Data |
Frame additional info - radio channel measuring (Must be null or valid Record Data .) |
Record Data
Either non-empty raw
or parsed
or both must be present.
attribute | description |
---|---|
parsedstring |
Parsed data content of the packet/frame |
raw[Record Data Part] |
Data content of the packet/frame |
Record Data Part
Either hex
or ascii
or both must be present.
attribute | description |
---|---|
addr* string |
Data address of the first byte in the given entry |
hexstring |
The data displayed in hexadecimal |
asciistring |
The data displayed in ASCII |
cut_beginunsigned int |
Number of bytes cut off at the beginning |
cut_endunsigned int |
Number of bytes cut off at the end |