2014-04-16 07:57:35 -05:00
|
|
|
/* global _ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Complex scripted dashboard
|
|
|
|
* This script generates a dashboard object that Grafana can load. It also takes a number of user
|
2015-02-19 14:31:06 -06:00
|
|
|
* supplied URL parameters (in the ARGS variable)
|
2014-04-16 07:57:35 -05:00
|
|
|
*
|
|
|
|
* Global accessable 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 14:31:06 -06:00
|
|
|
* call this function with the dashboard object
|
2014-04-16 07:57:35 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-02-19 14:31:06 -06:00
|
|
|
// accessible variables in this scope
|
2014-04-16 07:57:35 -05:00
|
|
|
var window, document, ARGS, $, jQuery, moment, kbn;
|
|
|
|
|
|
|
|
return function(callback) {
|
|
|
|
|
|
|
|
// Setup some variables
|
2014-11-20 09:32:19 -06:00
|
|
|
var dashboard;
|
2014-04-16 07:57:35 -05:00
|
|
|
|
|
|
|
// Intialize a skeleton with nothing but a rows array and service object
|
|
|
|
dashboard = {
|
|
|
|
rows : [],
|
|
|
|
services : {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Set a title
|
|
|
|
dashboard.title = 'Scripted dash';
|
2014-11-20 09:32:19 -06:00
|
|
|
|
|
|
|
// Set default time
|
2015-02-19 14:31:06 -06:00
|
|
|
// time can be overriden in the url using from/to parameters, but this is
|
2014-11-20 09:32:19 -06:00
|
|
|
// handled automatically in grafana core during dashboard initialization
|
2014-09-12 06:15:06 -05:00
|
|
|
dashboard.time = {
|
2014-11-20 09:32:19 -06:00
|
|
|
from: "now-6h",
|
|
|
|
to: "now"
|
2014-04-16 07:57:35 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var rows = 1;
|
|
|
|
var seriesName = 'argName';
|
|
|
|
|
|
|
|
if(!_.isUndefined(ARGS.rows)) {
|
|
|
|
rows = parseInt(ARGS.rows, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!_.isUndefined(ARGS.name)) {
|
|
|
|
seriesName = ARGS.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
method: 'GET',
|
|
|
|
url: '/'
|
|
|
|
})
|
|
|
|
.done(function(result) {
|
|
|
|
|
|
|
|
dashboard.rows.push({
|
|
|
|
title: 'Chart',
|
|
|
|
height: '300px',
|
|
|
|
panels: [
|
|
|
|
{
|
|
|
|
title: 'Async dashboard test',
|
|
|
|
type: 'text',
|
|
|
|
span: 12,
|
|
|
|
fill: 1,
|
|
|
|
content: '# Async test'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
// when dashboard is composed call the callback
|
|
|
|
// function and pass the dashboard
|
|
|
|
callback(dashboard);
|
|
|
|
|
|
|
|
});
|
2014-09-12 06:15:06 -05:00
|
|
|
}
|