feat(tablepanel): completed work on time series aggregations table transform, #3219

pull/3279/head
Torkel Ödegaard 10 years ago
parent f0087c93b8
commit aad824a562
  1. 1
      public/app/core/time_series.ts
  2. 3
      public/app/panels/table/transformers.ts

@ -143,6 +143,7 @@ class TimeSeries {
}
}
this.stats.count = result.length;
return result;
}

@ -78,6 +78,9 @@ transformers['timeseries_aggregations'] = {
{text: 'Avg', value: 'avg'},
{text: 'Min', value: 'min'},
{text: 'Max', value: 'max'},
{text: 'Total', value: 'total'},
{text: 'Current', value: 'current'},
{text: 'Count', value: 'count'},
];
},
transform: function(data, panel, model) {

Loading…
Cancel
Save