Capture Object Array
[
{
"Tags": {
"Serialnumber": "11111"
},
"Fields": {
"value1": 0,
"value2": 1,
"value3": 2
},
"Timestamp": "16896908105000"
},
{
"Tags": {
"Serialnumber": "11111"
},
"Fields": {
"value1": 2,
"value2": 1,
"value3": 0
},
"Timestamp": "16896908106000"
}
]
Will create this:
Timestamp | Serialnumber | VarName_value1 | VarName_value2 | VarName_value3 |
---|---|---|---|---|
16896908105000 | 11111 | 0 | 1 | 2 |
16896908106000 | 11111 | 2 | 1 | 0 |
NOTE: In Capture Edge versions before 2.0.9 the field name was not prefixed with the variable name. To revert to this old behavior (to support older dashboards), set this on the custom Connect Settings (cogwheel next to the Connection settings):
{"DataParseOptions":{"CaptureObjectParseOptions":{"PrefixFieldNameWithVariableName":false}}}