Commit c935fe90 by Danny Berger

Added cache-busting token for loading elasticsearch dashboards

parent 41046796
...@@ -293,7 +293,7 @@ function (angular, $, kbn, _, config, moment, Modernizr) { ...@@ -293,7 +293,7 @@ function (angular, $, kbn, _, config, moment, Modernizr) {
this.elasticsearch_load = function(type,id) { this.elasticsearch_load = function(type,id) {
return $http({ return $http({
url: config.elasticsearch + "/" + config.kibana_index + "/"+type+"/"+id, url: config.elasticsearch + "/" + config.kibana_index + "/"+type+"/"+id+'?' + new Date().getTime(),
method: "GET", method: "GET",
transformResponse: function(response) { transformResponse: function(response) {
return renderTemplate(angular.fromJson(response)._source.dashboard, $routeParams); return renderTemplate(angular.fromJson(response)._source.dashboard, $routeParams);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment