| ... | ... | @@ -5,6 +5,7 @@ title: 'MQTT Topic: frontend_thing_update' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# `frontend_thing_update`
|
|
|
|
|
|
|
|
|
| ... | ... | @@ -122,12 +123,22 @@ Changes in parsers timestamp columns. |
|
|
|
```py
|
|
|
|
{
|
|
|
|
"version": 6
|
|
|
|
# same as in version 5
|
|
|
|
... # same as in version 5
|
|
|
|
}
|
|
|
|
|
|
|
|
<PARSER> = {
|
|
|
|
# same as in version 5
|
|
|
|
'timestamp_columns': [<TS_COL>, ...] # any number of timestamp columns
|
|
|
|
# FROM VERSION 5
|
|
|
|
'type': <string>, # e.g CsvParser
|
|
|
|
'name': <string>,
|
|
|
|
'settings': {
|
|
|
|
'delimiter': <string>, # e.g ','
|
|
|
|
'skipfooter': <integer>, # lines to skip at the end of the file
|
|
|
|
'skiprows': <integer>, # lines to skip at the beginning of the file
|
|
|
|
'timestamp_column': <integer>,
|
|
|
|
'timestamp_format': <string>,
|
|
|
|
'pandas_read_csv': <object> | null # a dictionary of kwargs passed to `pandas.read_csv`
|
|
|
|
# NEW
|
|
|
|
'timestamp_columns': [<TS_COL>, ...] # any number of timestamp columns
|
|
|
|
}
|
|
|
|
|
|
|
|
<TS_COL> = {
|
| ... | ... | |
| ... | ... | |