| Hi, While writing data to influxDB using InfluxDBPlugin, is there a possibility to provide list data to the customDataMap and customDataMapTags
- multiple records of same table data (list belonging to same entity)
- multiple records of different table (list belonging to different entity)
//sample data def data = [test_detail:[[case:1, error:500], [case:4, error:1001], [case:4, error:91]], fix_detail:[[fix:1101, prio:1], [fix:1111, prio:5]]] Is this supported? At the moment, I am able to write individual record of entities, but adding multiple records fails. Thanks! |