Combination of two datasources in grafana

We are trying to use mixed as datasource where data from two different datasources is coming.
We have two different datasources:

  1. Elastic Search - have fields named ID, ID Count and Average time
  2. Customised Datasource - have fields named Response size. Actually the response form the customized datasource is like having array of multiple fields for each ID.
    After combining it should display ID, ID Count, Average time from first datasource and calculate the Average of Response size from second datasource.

Thanks.

Grafana don’t support aggregating results of multiple queries/datasources. You may want to have a look at this plugin https://github.com/GoshPosh/grafana-meta-queries. I haven’t tried it, but heard that others have been successful with it.

Marcus