Commit 97f54ac3 by Torkel Ödegaard

Small fix to PR 2119

parent ca67b49d
......@@ -91,11 +91,10 @@ function (angular, _, kbn) {
};
OpenTSDBDatasource.prototype.performMetricKeyValueLookup = function(metric, key) {
if(metric === "") {
throw "Metric not set.";
} else if(key === "") {
throw "Key not set.";
if(!metric || !key) {
return $q.when([]);
}
var m = metric + "{" + key + "=*}";
var options = {
method: 'GET',
......@@ -104,6 +103,7 @@ function (angular, _, kbn) {
m: m,
}
};
return backendSrv.datasourceRequest(options).then(function(result) {
result = result.data.results;
var tagvs = [];
......
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