Files
grafana/public/dashboards/scripted_async.js
T

77 lines
1.7 KiB
JavaScript
Raw Normal View History

/* global _ */
/*
* Complex scripted dashboard
* This script generates a dashboard object that Grafana can load. It also takes a number of user
2015-02-19 20:31:06 +00:00
* supplied URL parameters (in the ARGS variable)
*
2017-07-31 12:12:28 +02:00
* Global accessible variables
* window, document, $, jQuery, ARGS, moment
*
* Return a dashboard object, or a function
*
* For async scripts, return a function, this function must take a single callback function,
2015-02-19 20:31:06 +00:00
* call this function with the dashboard object
*/
'use strict';
2015-02-19 20:31:06 +00:00
// accessible variables in this scope
let window, document, ARGS, $, jQuery, moment, kbn;
2021-01-20 07:59:48 +01:00
return function (callback) {
// Setup some variables
let dashboard;
2017-07-31 12:12:28 +02:00
// Initialize a skeleton with nothing but a rows array and service object
dashboard = {
2020-08-11 17:52:44 +02:00
rows: [],
services: {},
};
// Set a title
dashboard.title = 'Scripted dash';
// Set default time
2017-07-31 12:12:28 +02:00
// time can be overridden in the url using from/to parameters, but this is
// handled automatically in grafana core during dashboard initialization
dashboard.time = {
2020-08-11 17:52:44 +02:00
from: 'now-6h',
to: 'now',
};
let rows = 1;
let seriesName = 'argName';
2020-08-11 17:52:44 +02:00
if (!_.isUndefined(ARGS.rows)) {
rows = parseInt(ARGS.rows, 10);
}
2020-08-11 17:52:44 +02:00
if (!_.isUndefined(ARGS.name)) {
seriesName = ARGS.name;
}
$.ajax({
method: 'GET',
2020-08-11 17:52:44 +02:00
url: '/',
2021-01-20 07:59:48 +01:00
}).done(function (result) {
dashboard.rows.push({
title: 'Chart',
height: '300px',
panels: [
{
title: 'Async dashboard test',
type: 'text',
span: 12,
fill: 1,
2020-08-11 17:52:44 +02:00
content: '# Async test',
},
],
});
// when dashboard is composed call the callback
// function and pass the dashboard
callback(dashboard);
});
2020-08-11 17:52:44 +02:00
};