mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
This commit is contained in:
84
'
84
'
@@ -1,84 +0,0 @@
|
|||||||
/* global _ */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Complex scripted dashboard
|
|
||||||
* This script generates a dashboard object that Grafana can load. It also takes a number of user
|
|
||||||
* supplied URL parameters (int ARGS variable)
|
|
||||||
*
|
|
||||||
* Return a dashboard object, or a function
|
|
||||||
*
|
|
||||||
* For async scripts, return a function, this function must take a single callback function as argument,
|
|
||||||
* call this callback function with the dashboard object (look at scripted_async.js for an example)
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
// accessable variables in this scope
|
|
||||||
var window, document, ARGS, $, jQuery, moment, kbn, services, _;
|
|
||||||
|
|
||||||
// default datasource
|
|
||||||
var datasource = services.datasourceSrv.default;
|
|
||||||
// get datasource used for saving dashboards
|
|
||||||
var dashboardDB = services.datasourceSrv.getGrafanaDB();
|
|
||||||
|
|
||||||
var targets = [];
|
|
||||||
|
|
||||||
function getTargets(path) {
|
|
||||||
return datasource.metricFindQuery(path + '.*').then(function(result) {
|
|
||||||
if (!result) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (targets.length === 10) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
var promises = _.map(result, function(metric) {
|
|
||||||
if (metric.expandable) {
|
|
||||||
return getTargets(path + "." + metric.text);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
targets.push(path + '.' + metric.text);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
});
|
|
||||||
|
|
||||||
return services.$q.when(promises);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function createDashboard(target, index) {
|
|
||||||
// Intialize a skeleton with nothing but a rows array and service object
|
|
||||||
var dashboard = { rows : [] };
|
|
||||||
dashboard.title = 'Scripted dash ' + index;
|
|
||||||
dashboard.time = {
|
|
||||||
from: "now-6h",
|
|
||||||
to: "now"
|
|
||||||
};
|
|
||||||
|
|
||||||
dashboard.rows.push({
|
|
||||||
title: 'Chart',
|
|
||||||
height: '300px',
|
|
||||||
panels: [
|
|
||||||
{
|
|
||||||
title: 'Events',
|
|
||||||
type: 'graph',
|
|
||||||
span: 12,
|
|
||||||
targets: [ {target: target} ]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return function(callback) {
|
|
||||||
|
|
||||||
getTargets('apps').then(function(results) {
|
|
||||||
console.log('targets: ', targets);
|
|
||||||
_.each(targets, function(target, index) {
|
|
||||||
var dashboard = createDashboard(target);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
- [Issue #938](https://github.com/grafana/grafana/issues/938). Panel: Plugin panels now reside outside of app/panels directory
|
- [Issue #938](https://github.com/grafana/grafana/issues/938). Panel: Plugin panels now reside outside of app/panels directory
|
||||||
- [Issue #952](https://github.com/grafana/grafana/issues/952). Help: Shortcut "?" to open help modal with list of all shortcuts
|
- [Issue #952](https://github.com/grafana/grafana/issues/952). Help: Shortcut "?" to open help modal with list of all shortcuts
|
||||||
- [Issue #991](https://github.com/grafana/grafana/issues/991). ScriptedDashboard: datasource services are now available in scripted dashboards, you can query datasource for metric keys, generate dashboards, and even save them in a scripted dashboard (see scripted_gen_and_save.js for example)
|
- [Issue #991](https://github.com/grafana/grafana/issues/991). ScriptedDashboard: datasource services are now available in scripted dashboards, you can query datasource for metric keys, generate dashboards, and even save them in a scripted dashboard (see scripted_gen_and_save.js for example)
|
||||||
|
- [Issue #716](https://github.com/grafana/grafana/issues/716). MetricsEditors: Ability to reorder metric queries
|
||||||
|
|
||||||
**OpenTSDB**
|
**OpenTSDB**
|
||||||
- [Issue #930](https://github.com/grafana/grafana/issues/930). OpenTSDB: Adding counter max and counter reset value to open tsdb query editor, thx @rsimiciuc
|
- [Issue #930](https://github.com/grafana/grafana/issues/930). OpenTSDB: Adding counter max and counter reset value to open tsdb query editor, thx @rsimiciuc
|
||||||
|
|||||||
@@ -275,6 +275,10 @@ function (angular, _, config, gfunc, Parser) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$scope.moveMetricQuery = function(fromIndex, toIndex) {
|
||||||
|
_.move($scope.panel.targets, fromIndex, toIndex);
|
||||||
|
};
|
||||||
|
|
||||||
$scope.duplicate = function() {
|
$scope.duplicate = function() {
|
||||||
var clone = angular.copy($scope.target);
|
var clone = angular.copy($scope.target);
|
||||||
$scope.panel.targets.push(clone);
|
$scope.panel.targets.push(clone);
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
define([
|
define([
|
||||||
'angular'
|
'angular',
|
||||||
|
'lodash'
|
||||||
],
|
],
|
||||||
function (angular) {
|
function (angular, _) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var module = angular.module('grafana.controllers');
|
var module = angular.module('grafana.controllers');
|
||||||
@@ -96,6 +97,10 @@ function (angular) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$scope.moveMetricQuery = function(fromIndex, toIndex) {
|
||||||
|
_.move($scope.panel.targets, fromIndex, toIndex);
|
||||||
|
};
|
||||||
|
|
||||||
$scope.duplicate = function() {
|
$scope.duplicate = function() {
|
||||||
var clone = angular.copy($scope.target);
|
var clone = angular.copy($scope.target);
|
||||||
$scope.panel.targets.push(clone);
|
$scope.panel.targets.push(clone);
|
||||||
|
|||||||
@@ -30,6 +30,19 @@
|
|||||||
ng-click="duplicate()">
|
ng-click="duplicate()">
|
||||||
Duplicate
|
Duplicate
|
||||||
</a>
|
</a>
|
||||||
|
</li>
|
||||||
|
<li role="menuitem">
|
||||||
|
<a tabindex="1"
|
||||||
|
ng-click="moveMetricQuery($index, $index-1)">
|
||||||
|
Move up
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li role="menuitem">
|
||||||
|
<a tabindex="1"
|
||||||
|
ng-click="moveMetricQuery($index, $index+1)">
|
||||||
|
Move down
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -15,26 +15,26 @@
|
|||||||
tabindex="1">
|
tabindex="1">
|
||||||
<i class="icon icon-cog"></i>
|
<i class="icon icon-cog"></i>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu pull-right" role="menu">
|
<ul class="dropdown-menu pull-right" role="menu">
|
||||||
<li role="menuitem">
|
<li role="menuitem"><a tabindex="1" ng-click="duplicate()">Duplicate</a></li>
|
||||||
<a tabindex="1" ng-click="duplicate()">Duplicate</a>
|
<li role="menuitem"><a tabindex="1" ng-click="showQuery()" ng-hide="target.rawQuery">Raw query mode</a></li>
|
||||||
<a tabindex="2" ng-click="showQuery()" ng-hide="target.rawQuery">Raw query mode</a>
|
<li role="menuitem"><a tabindex="1" ng-click="hideQuery()" ng-show="target.rawQuery">Query editor mode</a></li>
|
||||||
<a tabindex="2" ng-click="hideQuery()" ng-show="target.rawQuery">Query editor mode</a>
|
<li role="menuitem"><a tabindex="1" ng-click="moveMetricQuery($index, $index-1)">Move up </a></li>
|
||||||
</li>
|
<li role="menuitem"><a tabindex="1" ng-click="moveMetricQuery($index, $index+1)">Move down</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a class="pointer" tabindex="1" ng-click="removeDataQuery(target)">
|
<a class="pointer" tabindex="1" ng-click="removeDataQuery(target)">
|
||||||
<i class="icon icon-remove"></i>
|
<i class="icon icon-remove"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<ul class="grafana-segment-list">
|
<ul class="grafana-segment-list">
|
||||||
<li>
|
<li>
|
||||||
<a class="grafana-target-segment" ng-click="target.hide = !target.hide; get_data();" role="menuitem">
|
<a class="grafana-target-segment" ng-click="target.hide = !target.hide; get_data();" role="menuitem">
|
||||||
<i class="icon-eye-open"></i>
|
<i class="icon-eye-open"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user