load all metrics now works

pull/7/head
Torkel Ödegaard 12 years ago
parent 1cbe067b04
commit 16b0d797a9
  1. 3343
      grafana.sublime-workspace
  2. 28
      src/app/controllers/metricKeys.js

File diff suppressed because one or more lines are too long

@ -44,15 +44,37 @@ function (angular, _, config) {
};
$scope.loadAll = function() {
return $http.get(config.graphiteUrl + "/metrics/index.json")
.then(function (data) {
$scope.infoText = "Fetching all metrics from graphite...";
return $http.get(config.graphiteUrl + "/metrics/index.json")
.then(saveMetricsArray)
.then(function () {
$scope.infoText = "Indexing complete!";
})
.then(null, function(err) {
$scope.errorText = "Failed to fetch index.json metrics file from graphite: " + err;
$scope.errorText = err;
deferred.reject(err);
});
};
function saveMetricsArray(data, currentIndex)
{
if (!data && !data.data && !data.data.length == 0) {
return $q.reject('No metrics from graphite');
}
if (data.data.length === currentIndex) {
return $q.when('done');
}
currentIndex = currentIndex || 0;
return saveMetricKey(data.data[currentIndex])
.then(function() {
return saveMetricsArray(data, currentIndex + 1);
});
}
function deleteIndex()
{
var deferred = $q.defer();

Loading…
Cancel
Save