In grafana, we want to display total of all timeseries data-points for all assets connected to particular asset for which we are passing query like this:
ts{assetSubtreeIds=[{id=$Org4}], name='oil-production-rate'}
where value of $Org1 is coming from dashboard variable.
and since cognite grafana plugin does not handle cursor api responses and synthetic timeseries api have some limitation in returning 10k records only in a request, to reduce number of data-points, we are trying to use aggregation: ‘sum’ and granularity: ‘30d’ since there could be more than 10k data-points.
But its is throwing error saying “sum” is not valid aggregation type of synthetic timeseries.
Any reason why “sum” aggregation is not supported for synthetic timeseries.
(screenshot attached)