Commit 3df592c7 by Torkel Ödegaard

Dashboard: elasticsearch dashboard storage now slugifies urls, #781

parent 05fabc73
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
- [Issue #425](https://github.com/grafana/grafana/issues/425). Graph: New section in 'Display Styles' tab to override any display setting on per series bases (mix and match lines, bars, points, fill, stack, line width etc) - [Issue #425](https://github.com/grafana/grafana/issues/425). Graph: New section in 'Display Styles' tab to override any display setting on per series bases (mix and match lines, bars, points, fill, stack, line width etc)
- [Issue #634](https://github.com/grafana/grafana/issues/634). Dashboard: Dashboard tags now in different colors (from fixed palette) determined by tag name. - [Issue #634](https://github.com/grafana/grafana/issues/634). Dashboard: Dashboard tags now in different colors (from fixed palette) determined by tag name.
- [Issue #685](https://github.com/grafana/grafana/issues/685). Dashboard: New config.js option to change/remove window title prefix. - [Issue #685](https://github.com/grafana/grafana/issues/685). Dashboard: New config.js option to change/remove window title prefix.
- [Issue #781](https://github.com/grafana/grafana/issues/781). Dashboard: Title URL is now slugified for greater URL readability, works with both ES & InfluxDB storage, is backward compatible
**Fixes** **Fixes**
- [Issue #696](https://github.com/grafana/grafana/issues/696). Graph: Fix for y-axis format 'none' when values are in scientific notation (ex 2.3e-13) - [Issue #696](https://github.com/grafana/grafana/issues/696). Graph: Fix for y-axis format 'none' when values are in scientific notation (ex 2.3e-13)
......
...@@ -182,34 +182,46 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) { ...@@ -182,34 +182,46 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
var tags = dashboard.tags.join(','); var tags = dashboard.tags.join(',');
var title = dashboard.title; var title = dashboard.title;
var temp = dashboard.temp; var temp = dashboard.temp;
var id = kbn.slugifyForUrl(title);
if (temp) { delete dashboard.temp; } if (temp) { delete dashboard.temp; }
var data = [{ var data = [{
name: 'grafana.dashboard_' + btoa(title), name: 'grafana.dashboard_' + btoa(id),
columns: ['time', 'sequence_number', 'title', 'tags', 'dashboard'], columns: ['time', 'sequence_number', 'title', 'tags', 'dashboard', 'id'],
points: [[1000000000000, 1, title, tags, angular.toJson(dashboard)]] points: [[1000000000000, 1, title, tags, angular.toJson(dashboard), id]]
}]; }];
if (temp) { if (temp) {
return this._saveDashboardTemp(data, title); return this._saveDashboardTemp(data, title, id);
} }
else { else {
var self = this;
return this._influxRequest('POST', '/series', data).then(function() { return this._influxRequest('POST', '/series', data).then(function() {
return { title: title, url: '/dashboard/db/' + title }; self._removeUnslugifiedDashboard(title, false);
return { title: title, url: '/dashboard/db/' + id };
}, function(err) { }, function(err) {
throw 'Failed to save dashboard to InfluxDB: ' + err.data; throw 'Failed to save dashboard to InfluxDB: ' + err.data;
}); });
} }
}; };
InfluxDatasource.prototype._saveDashboardTemp = function(data, title) { InfluxDatasource.prototype._removeUnslugifiedDashboard = function(id, isTemp) {
data[0].name = 'grafana.temp_dashboard_' + btoa(title); var self = this;
self._getDashboardInternal(id, isTemp).then(function(dashboard) {
if (dashboard !== null) {
self.deleteDashboard(id);
}
});
};
InfluxDatasource.prototype._saveDashboardTemp = function(data, title, id) {
data[0].name = 'grafana.temp_dashboard_' + btoa(id);
data[0].columns.push('expires'); data[0].columns.push('expires');
data[0].points[0].push(this._getTempDashboardExpiresDate()); data[0].points[0].push(this._getTempDashboardExpiresDate());
return this._influxRequest('POST', '/series', data).then(function() { return this._influxRequest('POST', '/series', data).then(function() {
var baseUrl = window.location.href.replace(window.location.hash,''); var baseUrl = window.location.href.replace(window.location.hash,'');
var url = baseUrl + "#dashboard/temp/" + title; var url = baseUrl + "#dashboard/temp/" + id;
return { title: title, url: url }; return { title: title, url: url };
}, function(err) { }, function(err) {
throw 'Failed to save shared dashboard to InfluxDB: ' + err.data; throw 'Failed to save shared dashboard to InfluxDB: ' + err.data;
...@@ -236,7 +248,7 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) { ...@@ -236,7 +248,7 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
return expires; return expires;
}; };
InfluxDatasource.prototype.getDashboard = function(id, isTemp) { InfluxDatasource.prototype._getDashboardInternal = function(id, isTemp) {
var queryString = 'select dashboard from "grafana.dashboard_' + btoa(id) + '"'; var queryString = 'select dashboard from "grafana.dashboard_' + btoa(id) + '"';
if (isTemp) { if (isTemp) {
...@@ -245,13 +257,32 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) { ...@@ -245,13 +257,32 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
return this._seriesQuery(queryString).then(function(results) { return this._seriesQuery(queryString).then(function(results) {
if (!results || !results.length) { if (!results || !results.length) {
throw "Dashboard not found"; return null;
} }
var dashCol = _.indexOf(results[0].columns, 'dashboard'); var dashCol = _.indexOf(results[0].columns, 'dashboard');
var dashJson = results[0].points[0][dashCol]; var dashJson = results[0].points[0][dashCol];
return angular.fromJson(dashJson); return angular.fromJson(dashJson);
}, function() {
return null;
});
};
InfluxDatasource.prototype.getDashboard = function(id, isTemp) {
var self = this;
return this._getDashboardInternal(id, isTemp).then(function(dashboard) {
if (dashboard !== null) {
return dashboard;
}
// backward compatible load for unslugified ids
var slug = kbn.slugifyForUrl(id);
if (slug !== id) {
return self.getDashboard(slug, isTemp);
}
throw "Dashboard not found";
}, function(err) { }, function(err) {
throw "Could not load dashboard, " + err.data; throw "Could not load dashboard, " + err.data;
}); });
...@@ -269,7 +300,7 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) { ...@@ -269,7 +300,7 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
}; };
InfluxDatasource.prototype.searchDashboards = function(queryString) { InfluxDatasource.prototype.searchDashboards = function(queryString) {
var influxQuery = 'select title, tags from /grafana.dashboard_.*/ where '; var influxQuery = 'select * from /grafana.dashboard_.*/ where ';
var tagsOnly = queryString.indexOf('tags!:') === 0; var tagsOnly = queryString.indexOf('tags!:') === 0;
if (tagsOnly) { if (tagsOnly) {
...@@ -294,15 +325,21 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) { ...@@ -294,15 +325,21 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
return hits; return hits;
} }
var dashCol = _.indexOf(results[0].columns, 'title');
var tagsCol = _.indexOf(results[0].columns, 'tags');
for (var i = 0; i < results.length; i++) { for (var i = 0; i < results.length; i++) {
var dashCol = _.indexOf(results[i].columns, 'title');
var tagsCol = _.indexOf(results[i].columns, 'tags');
var idCol = _.indexOf(results[i].columns, 'id');
var hit = { var hit = {
id: results[i].points[0][dashCol], id: results[i].points[0][dashCol],
title: results[i].points[0][dashCol], title: results[i].points[0][dashCol],
tags: results[i].points[0][tagsCol].split(",") tags: results[i].points[0][tagsCol].split(",")
}; };
if (idCol !== -1) {
hit.id = results[i].points[0][idCol];
}
hit.tags = hit.tags[0] ? hit.tags : []; hit.tags = hit.tags[0] ? hit.tags : [];
hits.dashboards.push(hit); hits.dashboards.push(hit);
} }
......
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