diff --git a/public/app/features/templating/editorCtrl.js b/public/app/features/templating/editorCtrl.js
index f48452e4569..65b06f3ceb3 100644
--- a/public/app/features/templating/editorCtrl.js
+++ b/public/app/features/templating/editorCtrl.js
@@ -23,7 +23,10 @@ function (angular, _) {
$scope.init = function() {
$scope.editor = { index: 0 };
- $scope.datasources = datasourceSrv.getMetricSources();
+ $scope.datasources = _.filter(datasourceSrv.getMetricSources(), function(ds) {
+ return !ds.meta.builtIn;
+ });
+
$scope.variables = templateSrv.variables;
$scope.reset();
diff --git a/public/app/partials/metrics.html b/public/app/partials/metrics.html
index 4aaffed9791..215bc2dd945 100644
--- a/public/app/partials/metrics.html
+++ b/public/app/partials/metrics.html
@@ -6,12 +6,12 @@
-