mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
439 lines
14 KiB
JavaScript
Executable File
439 lines
14 KiB
JavaScript
Executable File
define([
|
|
'angular',
|
|
'jquery',
|
|
'kbn',
|
|
'moment',
|
|
'lodash',
|
|
'./grafanaGraph.tooltip'
|
|
],
|
|
function (angular, $, kbn, moment, _, GraphTooltip) {
|
|
'use strict';
|
|
|
|
var module = angular.module('grafana.directives');
|
|
|
|
module.directive('grafanaGraph', function($rootScope, timeSrv) {
|
|
return {
|
|
restrict: 'A',
|
|
template: '<div> </div>',
|
|
link: function(scope, elem) {
|
|
var dashboard = scope.dashboard;
|
|
var data, annotations;
|
|
var legendSideLastValue = null;
|
|
scope.crosshairEmiter = false;
|
|
|
|
scope.onAppEvent('setCrosshair', function(event, info) {
|
|
// do not need to to this if event is from this panel
|
|
if (info.scope === scope) {
|
|
return;
|
|
}
|
|
|
|
if(dashboard.sharedCrosshair) {
|
|
var plot = elem.data().plot;
|
|
if (plot) {
|
|
plot.setCrosshair({ x: info.pos.x, y: info.pos.y });
|
|
}
|
|
}
|
|
});
|
|
|
|
scope.onAppEvent('clearCrosshair', function() {
|
|
var plot = elem.data().plot;
|
|
if (plot) {
|
|
plot.clearCrosshair();
|
|
}
|
|
});
|
|
|
|
scope.$on('refresh', function() {
|
|
scope.get_data();
|
|
});
|
|
|
|
scope.$on('toggleLegend', function() {
|
|
render_panel();
|
|
});
|
|
|
|
// Receive render events
|
|
scope.$on('render',function(event, renderData) {
|
|
data = renderData || data;
|
|
if (!data) {
|
|
scope.get_data();
|
|
return;
|
|
}
|
|
annotations = data.annotations || annotations;
|
|
render_panel();
|
|
});
|
|
|
|
function setElementHeight() {
|
|
try {
|
|
var height = scope.height || scope.panel.height || scope.row.height;
|
|
if (_.isString(height)) {
|
|
height = parseInt(height.replace('px', ''), 10);
|
|
}
|
|
|
|
height -= scope.panel.title ? 24 : 9; // subtract panel title bar
|
|
|
|
if (scope.panel.legend.show && !scope.panel.legend.rightSide) {
|
|
height = height - 21; // subtract one line legend
|
|
}
|
|
|
|
elem.css('height', height + 'px');
|
|
|
|
return true;
|
|
} catch(e) { // IE throws errors sometimes
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function shouldAbortRender() {
|
|
if (!data) {
|
|
return true;
|
|
}
|
|
|
|
if ($rootScope.fullscreen && !scope.fullscreen) {
|
|
return true;
|
|
}
|
|
|
|
if (!setElementHeight()) { return true; }
|
|
|
|
if (_.isString(data)) {
|
|
render_panel_as_graphite_png(data);
|
|
return true;
|
|
}
|
|
|
|
if (elem.width() === 0) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
function updateLegendValues(plot) {
|
|
var yaxis = plot.getYAxes();
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
var series = data[i];
|
|
var axis = yaxis[series.yaxis - 1];
|
|
var formater = kbn.valueFormats[scope.panel.y_formats[series.yaxis - 1]];
|
|
series.updateLegendValues(formater, axis.tickDecimals, axis.scaledDecimals);
|
|
if(!scope.$$phase) { scope.$digest(); }
|
|
}
|
|
}
|
|
|
|
// Function for rendering panel
|
|
function render_panel() {
|
|
if (shouldAbortRender()) {
|
|
return;
|
|
}
|
|
|
|
var panel = scope.panel;
|
|
var stack = panel.stack ? true : null;
|
|
|
|
// Populate element
|
|
var options = {
|
|
hooks: { draw: [updateLegendValues] },
|
|
legend: { show: false },
|
|
series: {
|
|
stackpercent: panel.stack ? panel.percentage : false,
|
|
stack: panel.percentage ? null : stack,
|
|
lines: {
|
|
show: panel.lines,
|
|
zero: false,
|
|
fill: translateFillOption(panel.fill),
|
|
lineWidth: panel.linewidth,
|
|
steps: panel.steppedLine
|
|
},
|
|
bars: {
|
|
show: panel.bars,
|
|
fill: 1,
|
|
barWidth: 1,
|
|
zero: false,
|
|
lineWidth: 0
|
|
},
|
|
points: {
|
|
show: panel.points,
|
|
fill: 1,
|
|
fillColor: false,
|
|
radius: panel.points ? panel.pointradius : 2
|
|
// little points when highlight points
|
|
},
|
|
shadowSize: 1
|
|
},
|
|
yaxes: [],
|
|
xaxis: {},
|
|
grid: {
|
|
minBorderMargin: 0,
|
|
markings: [],
|
|
backgroundColor: null,
|
|
borderWidth: 0,
|
|
hoverable: true,
|
|
color: '#c8c8c8'
|
|
},
|
|
selection: {
|
|
mode: "x",
|
|
color: '#666'
|
|
},
|
|
crosshair: {
|
|
mode: panel.tooltip.shared || dashboard.sharedCrosshair ? "x" : null
|
|
}
|
|
};
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
var series = data[i];
|
|
series.applySeriesOverrides(panel.seriesOverrides);
|
|
series.data = series.getFlotPairs(panel.nullPointMode, panel.y_formats);
|
|
// if hidden remove points and disable stack
|
|
if (scope.hiddenSeries[series.info.alias]) {
|
|
series.data = [];
|
|
series.stack = false;
|
|
}
|
|
}
|
|
|
|
if (data.length && data[0].stats.timeStep) {
|
|
console.log('timeStep', data[0].stats.timeStep);
|
|
console.log('timeStep2', data[1].stats.timeStep);
|
|
options.series.bars.barWidth = data[0].stats.timeStep / 1.5;
|
|
console.log('barWidth', data[1].stats.timeStep);
|
|
}
|
|
|
|
addTimeAxis(options);
|
|
addGridThresholds(options, panel);
|
|
addAnnotations(options);
|
|
configureAxisOptions(data, options);
|
|
|
|
var sortedSeries = _.sortBy(data, function(series) { return series.zindex; });
|
|
|
|
function callPlot() {
|
|
try {
|
|
$.plot(elem, sortedSeries, options);
|
|
} catch (e) {
|
|
console.log('flotcharts error', e);
|
|
}
|
|
|
|
addAxisLabels();
|
|
}
|
|
|
|
if (shouldDelayDraw(panel)) {
|
|
setTimeout(callPlot, 50);
|
|
legendSideLastValue = panel.legend.rightSide;
|
|
}
|
|
else {
|
|
callPlot();
|
|
}
|
|
}
|
|
|
|
function translateFillOption(fill) {
|
|
return fill === 0 ? 0.001 : fill/10;
|
|
}
|
|
|
|
function shouldDelayDraw(panel) {
|
|
if (panel.legend.rightSide) {
|
|
return true;
|
|
}
|
|
if (legendSideLastValue !== null && panel.legend.rightSide !== legendSideLastValue) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function addTimeAxis(options) {
|
|
var ticks = elem.width() / 100;
|
|
var min = _.isUndefined(scope.range.from) ? null : scope.range.from.getTime();
|
|
var max = _.isUndefined(scope.range.to) ? null : scope.range.to.getTime();
|
|
|
|
options.xaxis = {
|
|
timezone: dashboard.timezone,
|
|
show: scope.panel['x-axis'],
|
|
mode: "time",
|
|
min: min,
|
|
max: max,
|
|
label: "Datetime",
|
|
ticks: ticks,
|
|
timeformat: time_format(scope.interval, ticks, min, max),
|
|
};
|
|
}
|
|
|
|
function addGridThresholds(options, panel) {
|
|
if (panel.grid.threshold1) {
|
|
var limit1 = panel.grid.thresholdLine ? panel.grid.threshold1 : (panel.grid.threshold2 || null);
|
|
options.grid.markings.push({
|
|
yaxis: { from: panel.grid.threshold1, to: limit1 },
|
|
color: panel.grid.threshold1Color
|
|
});
|
|
|
|
if (panel.grid.threshold2) {
|
|
var limit2;
|
|
if (panel.grid.thresholdLine) {
|
|
limit2 = panel.grid.threshold2;
|
|
} else {
|
|
limit2 = panel.grid.threshold1 > panel.grid.threshold2 ? -Infinity : +Infinity;
|
|
}
|
|
options.grid.markings.push({
|
|
yaxis: { from: panel.grid.threshold2, to: limit2 },
|
|
color: panel.grid.threshold2Color
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
function addAnnotations(options) {
|
|
if(!annotations || annotations.length === 0) {
|
|
return;
|
|
}
|
|
|
|
var types = {};
|
|
|
|
_.each(annotations, function(event) {
|
|
if (!types[event.annotation.name]) {
|
|
types[event.annotation.name] = {
|
|
level: _.keys(types).length + 1,
|
|
icon: {
|
|
icon: "icon-chevron-down",
|
|
size: event.annotation.iconSize,
|
|
color: event.annotation.iconColor,
|
|
}
|
|
};
|
|
}
|
|
|
|
if (event.annotation.showLine) {
|
|
options.grid.markings.push({
|
|
color: event.annotation.lineColor,
|
|
lineWidth: 1,
|
|
xaxis: { from: event.min, to: event.max }
|
|
});
|
|
}
|
|
});
|
|
|
|
options.events = {
|
|
levels: _.keys(types).length + 1,
|
|
data: annotations,
|
|
types: types
|
|
};
|
|
}
|
|
|
|
function addAxisLabels() {
|
|
if (scope.panel.leftYAxisLabel) {
|
|
elem.css('margin-left', '10px');
|
|
var yaxisLabel = $("<div class='axisLabel yaxisLabel'></div>")
|
|
.text(scope.panel.leftYAxisLabel)
|
|
.appendTo(elem);
|
|
|
|
yaxisLabel.css("margin-top", yaxisLabel.width() / 2 - 20);
|
|
} else if (elem.css('margin-left')) {
|
|
elem.css('margin-left', '');
|
|
}
|
|
}
|
|
|
|
function configureAxisOptions(data, options) {
|
|
var defaults = {
|
|
position: 'left',
|
|
show: scope.panel['y-axis'],
|
|
min: scope.panel.grid.leftMin,
|
|
max: scope.panel.percentage && scope.panel.stack ? 100 : scope.panel.grid.leftMax,
|
|
};
|
|
|
|
options.yaxes.push(defaults);
|
|
|
|
if (_.findWhere(data, {yaxis: 2})) {
|
|
var secondY = _.clone(defaults);
|
|
secondY.position = 'right';
|
|
secondY.min = scope.panel.grid.rightMin;
|
|
secondY.max = scope.panel.percentage && scope.panel.stack ? 100 : scope.panel.grid.rightMax;
|
|
options.yaxes.push(secondY);
|
|
configureAxisMode(options.yaxes[1], scope.panel.y_formats[1]);
|
|
}
|
|
|
|
configureAxisMode(options.yaxes[0], scope.panel.y_formats[0]);
|
|
}
|
|
|
|
function configureAxisMode(axis, format) {
|
|
axis.tickFormatter = function(val, axis) {
|
|
return kbn.valueFormats[format](val, axis.tickDecimals, axis.scaledDecimals);
|
|
};
|
|
}
|
|
|
|
function time_format(interval, ticks, min, max) {
|
|
if (min && max && ticks) {
|
|
var secPerTick = ((max - min) / ticks) / 1000;
|
|
|
|
if (secPerTick <= 45) {
|
|
return "%H:%M:%S";
|
|
}
|
|
if (secPerTick <= 3600) {
|
|
return "%H:%M";
|
|
}
|
|
if (secPerTick <= 80000) {
|
|
return "%m/%d %H:%M";
|
|
}
|
|
if (secPerTick <= 2419200) {
|
|
return "%m/%d";
|
|
}
|
|
return "%Y-%m";
|
|
}
|
|
|
|
return "%H:%M";
|
|
}
|
|
|
|
function render_panel_as_graphite_png(url) {
|
|
url += '&width=' + elem.width();
|
|
url += '&height=' + elem.css('height').replace('px', '');
|
|
url += '&bgcolor=1f1f1f'; // @grayDarker & @grafanaPanelBackground
|
|
url += '&fgcolor=BBBFC2'; // @textColor & @grayLighter
|
|
url += scope.panel.stack ? '&areaMode=stacked' : '';
|
|
url += scope.panel.fill !== 0 ? ('&areaAlpha=' + (scope.panel.fill/10).toFixed(1)) : '';
|
|
url += scope.panel.linewidth !== 0 ? '&lineWidth=' + scope.panel.linewidth : '';
|
|
url += scope.panel.legend.show ? '&hideLegend=false' : '&hideLegend=true';
|
|
url += scope.panel.grid.leftMin !== null ? '&yMin=' + scope.panel.grid.leftMin : '';
|
|
url += scope.panel.grid.leftMax !== null ? '&yMax=' + scope.panel.grid.leftMax : '';
|
|
url += scope.panel.grid.rightMin !== null ? '&yMin=' + scope.panel.grid.rightMin : '';
|
|
url += scope.panel.grid.rightMax !== null ? '&yMax=' + scope.panel.grid.rightMax : '';
|
|
url += scope.panel['x-axis'] ? '' : '&hideAxes=true';
|
|
url += scope.panel['y-axis'] ? '' : '&hideYAxis=true';
|
|
|
|
switch(scope.panel.y_formats[0]) {
|
|
case 'bytes':
|
|
url += '&yUnitSystem=binary';
|
|
break;
|
|
case 'bits':
|
|
url += '&yUnitSystem=binary';
|
|
break;
|
|
case 'bps':
|
|
url += '&yUnitSystem=si';
|
|
break;
|
|
case 'short':
|
|
url += '&yUnitSystem=si';
|
|
break;
|
|
case 'none':
|
|
url += '&yUnitSystem=none';
|
|
break;
|
|
}
|
|
|
|
switch(scope.panel.nullPointMode) {
|
|
case 'connected':
|
|
url += '&lineMode=connected';
|
|
break;
|
|
case 'null':
|
|
break; // graphite default lineMode
|
|
case 'null as zero':
|
|
url += "&drawNullAsZero=true";
|
|
break;
|
|
}
|
|
|
|
url += scope.panel.steppedLine ? '&lineMode=staircase' : '';
|
|
|
|
elem.html('<img src="' + url + '"></img>');
|
|
}
|
|
|
|
new GraphTooltip(elem, dashboard, scope, function() {
|
|
return data;
|
|
});
|
|
|
|
elem.bind("plotselected", function (event, ranges) {
|
|
scope.$apply(function() {
|
|
timeSrv.setTime({
|
|
from : moment.utc(ranges.xaxis.from).toDate(),
|
|
to : moment.utc(ranges.xaxis.to).toDate(),
|
|
});
|
|
});
|
|
});
|
|
}
|
|
};
|
|
});
|
|
|
|
});
|