Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

method namerequest typepathdescription

getPage

GET

/data/{index}/paging

returns pages with predefined number of events per page of a specific measurement series from InfluxDB

getAllInfos

GET

/info

returns list with ids of all existing measurement series (including event schema) from InfluxDB

getAllData

GET

/data/{index}

/data/{index}/last/{value}/{unit}

/data/{index}/{startdate}/{enddate}

returns all stored events of a specific mesurement series from InfluxDB

returns an aggregated set of all stored events of a specific mesurement series from InfluxDB

returns all stored events within the specified time frame of a specific mesurement series from InfluxDB

getAllDataGroupingGET/data/{index}/{startdate}/{enddate}/grouping/{groupingTag}returns all events within a specified time frame of a specific mesurement series grouped by a specific tag from InfluxDB

removeAllData

DELETE

/data/delete/all

removes all stored events from InfluxDB
downloadDataGET

/data/{index}/download

/data/{index}/{startdate}/{enddate}/download


downloads all events of a specific mesurement series from InfluxDB in desired format

downloads all events within a specified time frame of a specific mesurement series from InfluxDB in desired format

getImage

GET

/data/image/{route}/file

returns png image from file route

saveImageCoco

POST

/data/image/{route}/coco

stores image as file at file route

getImageCoco

GET

/data/image/{route}/coco

returns image at file route as application/json
labelDataPOST

/data/{index}/{startdate}/{enddate}/labeling/{column}/{timestampColumn}?label=

updates label in specified column for all events within specified time frame to provided label value

...

In addition to the TODOs listed above in the text, the following adjustments and enhancements might be worth considering. Thereby, it is important that the implementation of the endpoints is as independent as possible from the technology of the data lake (e.g. avoiding InfluxDB-specific methods).

  • Extension of the remove endpoint by the capability to
    • selectively delete an individual measurement series
    • delete measurements of a measurement series within a specific time interval or before a specific time intervaldate
  • Adding an edit endpoint for adjusting data lake specific properties such as retention time.

Both extensions could be included in a kind of data management tool in the UI within an admin view (e.g. in the manner of the pipeline view).

Another possible adaptation would be the comprehensive implementation of an append-only approach for time series data. In particular, the functionality of the labelData method would have to be adapted here, which currently works with updates of existing DB entries.



...

References: