mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
ae30482465
* Fix lint error in types.ts * Bump eslint and its deps to latest * Add eslintignore and remove not needed eslintrcs * Change webpack configs eslint config * Update package.jsons and removed unused eslintrc files * Chore yarn lint --fix 💅 * Add devenv to eslintignore * Remove eslint disable comments for rules that are not used * Remaining eslint fixes 💅 * Bump grafana/eslint-config 💥 * Modify package.json No need for duplicate checks. * Modify eslintignore to ignore data and dist folders * Revert removing .eslintrc to make sure not to use certain packages * Modify package.json to remove not needed command * Use gitignore for ignoring paths
100 lines
2.0 KiB
JavaScript
100 lines
2.0 KiB
JavaScript
/* 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';
|
|
|
|
// accessible variables in this scope
|
|
var window, document, ARGS, $, jQuery, moment, kbn;
|
|
|
|
// Setup some variables
|
|
var dashboard;
|
|
|
|
// All url parameters are available via the ARGS object
|
|
// eslint-disable-next-line no-redeclare
|
|
var ARGS;
|
|
|
|
// Initialize a skeleton with nothing but a rows array and service object
|
|
dashboard = {
|
|
rows: [],
|
|
schemaVersion: 13,
|
|
};
|
|
|
|
// Set a title
|
|
dashboard.title = 'Scripted and templated dash';
|
|
|
|
// Set default time
|
|
// time can be overridden in the url using from/to parameters, but this is
|
|
// handled automatically in grafana core during dashboard initialization
|
|
dashboard.time = {
|
|
from: 'now-6h',
|
|
to: 'now',
|
|
};
|
|
|
|
dashboard.templating = {
|
|
list: [
|
|
{
|
|
name: 'test',
|
|
query: 'apps.backend.*',
|
|
refresh: 1,
|
|
type: 'query',
|
|
datasource: null,
|
|
hide: 2,
|
|
},
|
|
{
|
|
name: 'test2',
|
|
query: '*',
|
|
refresh: 1,
|
|
type: 'query',
|
|
datasource: null,
|
|
hide: 2,
|
|
},
|
|
],
|
|
};
|
|
|
|
var rows = 1;
|
|
var seriesName = 'argName';
|
|
|
|
if (!_.isUndefined(ARGS.rows)) {
|
|
rows = parseInt(ARGS.rows, 10);
|
|
}
|
|
|
|
if (!_.isUndefined(ARGS.name)) {
|
|
seriesName = ARGS.name;
|
|
}
|
|
|
|
for (var i = 0; i < rows; i++) {
|
|
dashboard.rows.push({
|
|
title: 'Chart',
|
|
height: '300px',
|
|
panels: [
|
|
{
|
|
title: 'Events',
|
|
type: 'graph',
|
|
span: 12,
|
|
fill: 1,
|
|
linewidth: 2,
|
|
targets: [
|
|
{
|
|
target: "randomWalk('" + seriesName + "')",
|
|
},
|
|
{
|
|
target: "randomWalk('[[test2]]')",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
return dashboard;
|