| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756 |
- /** @scratch /panels/5
- * include::panels/histogram.asciidoc[]
- */
- /** @scratch /panels/histogram/0
- * == Histogram
- * Status: *Stable*
- *
- * The histogram panel allow for the display of time charts. It includes several modes and tranformations
- * to display event counts, mean, min, max and total of numeric fields, and derivatives of counter
- * fields.
- *
- */
- define([
- 'angular',
- 'app',
- 'jquery',
- 'underscore',
- 'kbn',
- 'moment',
- './timeSeries',
- 'jquery.flot',
- 'jquery.flot.events',
- 'jquery.flot.selection',
- 'jquery.flot.time',
- 'jquery.flot.byte',
- 'jquery.flot.stack',
- 'jquery.flot.stackpercent'
- ],
- function (angular, app, $, _, kbn, moment, timeSeries) {
- 'use strict';
- var module = angular.module('kibana.panels.graphite', []);
- app.useModule(module);
- module.controller('graphite', function($scope, $rootScope, filterSrv, graphiteSrv, $timeout) {
- $scope.panelMeta = {
- modals : [],
- editorTabs: [],
- fullEditorTabs : [
- {
- title:'Targets',
- src:'app/panels/graphite/editor.html'
- },
- {
- title:'Axis labels',
- src:'app/panels/graphite/axisEditor.html'
- },
- {
- title:'Style',
- src:'app/panels/graphite/styleEditor.html'
- }
- ],
- menuItems: [
- { text: 'View fullscreen', click: 'toggleFullscreen()' },
- { text: 'Edit', click: 'openConfigureModal()' },
- { text: 'Duplicate', click: 'duplicate()' },
- { text: 'Span', submenu: [
- { text: '1', click: 'updateColumnSpan(1)' },
- { text: '2', click: 'updateColumnSpan(2)' },
- { text: '3', click: 'updateColumnSpan(3)' },
- { text: '4', click: 'updateColumnSpan(4)' },
- { text: '5', click: 'updateColumnSpan(5)' },
- { text: '6', click: 'updateColumnSpan(6)' },
- { text: '7', click: 'updateColumnSpan(7)' },
- { text: '8', click: 'updateColumnSpan(8)' },
- { text: '9', click: 'updateColumnSpan(9)' },
- { text: '10', click: 'updateColumnSpan(10)' },
- { text: '11', click: 'updateColumnSpan(11)' },
- { text: '12', click: 'updateColumnSpan(12)' },
- ]},
- { text: 'Remove', click: 'remove_panel_from_row(row, panel)' }
- ],
- status : "Unstable",
- description : "Graphite graphing panel <br /><br />"
- };
- // Set and populate defaults
- var _d = {
- /** @scratch /panels/histogram/3
- * x-axis:: Show the x-axis
- */
- 'x-axis' : true,
- /** @scratch /panels/histogram/3
- * y-axis:: Show the y-axis
- */
- 'y-axis' : true,
- /** @scratch /panels/histogram/3
- * scale:: Scale the y-axis by this factor
- */
- scale : 1,
- /** @scratch /panels/histogram/3
- * y_format:: 'none','bytes','short '
- */
- y_format : 'none',
- y2_format : 'none',
- /** @scratch /panels/histogram/5
- * grid object:: Min and max y-axis values
- * grid.min::: Minimum y-axis value
- * grid.max::: Maximum y-axis value
- */
- grid : {
- max: null,
- min: 0
- },
- /** @scratch /panels/histogram/3
- * ==== Annotations
- * annotate object:: A query can be specified, the results of which will be displayed as markers on
- * the chart. For example, for noting code deploys.
- * annotate.enable::: Should annotations, aka markers, be shown?
- * annotate.query::: Lucene query_string syntax query to use for markers.
- * annotate.size::: Max number of markers to show
- * annotate.field::: Field from documents to show
- * annotate.sort::: Sort array in format [field,order], For example [`@timestamp',`desc']
- */
- annotate : {
- enable : false,
- query : "*",
- size : 20,
- field : '_type',
- sort : ['_score','desc']
- },
- /** @scratch /panels/histogram/3
- * ==== Interval options
- * auto_int:: Automatically scale intervals?
- */
- auto_int : true,
- /** @scratch /panels/histogram/3
- * resolution:: If auto_int is true, shoot for this many bars.
- */
- resolution : 100,
- /** @scratch /panels/histogram/3
- * interval:: If auto_int is set to false, use this as the interval.
- */
- interval : '5m',
- /** @scratch /panels/histogram/3
- * interval:: Array of possible intervals in the *View* selector. Example [`auto',`1s',`5m',`3h']
- */
- intervals : ['auto','1s','1m','5m','10m','30m','1h','3h','12h','1d','1w','1y'],
- /** @scratch /panels/histogram/3
- * ==== Drawing options
- * lines:: Show line chart
- */
- lines : true,
- /** @scratch /panels/histogram/3
- * fill:: Area fill factor for line charts, 1-10
- */
- fill : 0,
- /** @scratch /panels/histogram/3
- * linewidth:: Weight of lines in pixels
- */
- linewidth : 1,
- /** @scratch /panels/histogram/3
- * points:: Show points on chart
- */
- points : false,
- /** @scratch /panels/histogram/3
- * pointradius:: Size of points in pixels
- */
- pointradius : 5,
- /** @scratch /panels/histogram/3
- * bars:: Show bars on chart
- */
- bars : false,
- /** @scratch /panels/histogram/3
- * stack:: Stack multiple series
- */
- stack : true,
- /** @scratch /panels/histogram/3
- * spyable:: Show inspect icon
- */
- spyable : true,
- /** @scratch /panels/histogram/3
- * zoomlinks:: Show `Zoom Out' link
- */
- zoomlinks : false,
- /** @scratch /panels/histogram/3
- * options:: Show quick view options section
- */
- options : false,
- /** @scratch /panels/histogram/3
- * legend:: Display the legond
- */
- legend : true,
- /** @scratch /panels/histogram/3
- * interactive:: Enable click-and-drag to zoom functionality
- */
- interactive : true,
- /** @scratch /panels/histogram/3
- * legend_counts:: Show counts in legend
- */
- legend_counts : true,
- /** @scratch /panels/histogram/3
- * ==== Transformations
- * timezone:: Correct for browser timezone?. Valid values: browser, utc
- */
- timezone : 'browser', // browser or utc
- /** @scratch /panels/histogram/3
- * percentage:: Show the y-axis as a percentage of the axis total. Only makes sense for multiple
- * queries
- */
- percentage : false,
- /** @scratch /panels/histogram/3
- * zerofill:: Improves the accuracy of line charts at a small performance cost.
- */
- zerofill : true,
- nullPointMode : 'connected',
- steppedLine: false,
- tooltip : {
- value_type: 'cumulative',
- query_as_alias: true
- },
- targets: [],
- aliasColors: {},
- aliasYAxis: {},
- };
- _.defaults($scope.panel,_d);
- _.defaults($scope.panel.tooltip,_d.tooltip);
- _.defaults($scope.panel.annotate,_d.annotate);
- _.defaults($scope.panel.grid,_d.grid);
- $scope.init = function() {
- // Hide view options by default
- $scope.fullscreen = false;
- $scope.options = false;
- $scope.editor = {index: 1};
- $scope.editorTabs = _.union(['General'],_.pluck($scope.panelMeta.fullEditorTabs,'title'));
- $scope.hiddenSeries = {};
- // Always show the query if an alias isn't set. Users can set an alias if the query is too
- // long
- $scope.panel.tooltip.query_as_alias = true;
- $scope.get_data();
- };
- $scope.set_interval = function(interval) {
- if(interval !== 'auto') {
- $scope.panel.auto_int = false;
- $scope.panel.interval = interval;
- } else {
- $scope.panel.auto_int = true;
- }
- };
- $scope.typeAheadSource = function () {
- return ["test", "asd", "testing2"];
- };
- $scope.remove_panel_from_row = function(row, panel) {
- if ($scope.fullscreen) {
- $rootScope.$emit('panel-fullscreen-exit');
- }
- else {
- $scope.$parent.remove_panel_from_row(row, panel);
- }
- };
- $scope.removeTarget = function (target) {
- $scope.panel.targets = _.without($scope.panel.targets, target);
- $scope.get_data();
- };
- $scope.interval_label = function(interval) {
- return $scope.panel.auto_int && interval === $scope.panel.interval ? interval+" (auto)" : interval;
- };
- $scope.updateTimeRange = function () {
- var range = filterSrv.timeRange();
- var interval = filterSrv.timeRange();
- if ($scope.panel.auto_int) {
- if (range) {
- interval = kbn.secondsToHms(
- kbn.calculate_interval(range.from, range.to, $scope.panel.resolution, 0) / 1000
- );
- }
- }
- $scope.interval = $scope.panel.interval = interval || '10m';
- $scope.range = range;
- };
- $scope.colors = [
- "#7EB26D","#EAB839","#6ED0E0","#EF843C","#E24D42","#1F78C1","#BA43A9","#705DA0", //1
- "#508642","#CCA300","#447EBC","#C15C17","#890F02","#0A437C","#6D1F62","#584477", //2
- "#B7DBAB","#F4D598","#70DBED","#F9BA8F","#F29191","#82B5D8","#E5A8E2","#AEA2E0", //3
- "#629E51","#E5AC0E","#64B0C8","#E0752D","#BF1B00","#0A50A1","#962D82","#614D93", //4
- "#9AC48A","#F2C96D","#65C5DB","#F9934E","#EA6460","#5195CE","#D683CE","#806EB7", //5
- "#3F6833","#967302","#2F575E","#99440A","#58140C","#052B51","#511749","#3F2B5B", //6
- "#E0F9D7","#FCEACA","#CFFAFF","#F9E2D2","#FCE2DE","#BADFF4","#F9D9F9","#DEDAF7" //7
- ];
- /**
- * Fetch the data for a chunk of a queries results. Multiple segments occur when several indicies
- * need to be consulted (like timestamped logstash indicies)
- *
- * The results of this function are stored on the scope's data property. This property will be an
- * array of objects with the properties info, time_series, and hits. These objects are used in the
- * render_panel function to create the historgram.
- *
- */
- $scope.get_data = function() {
- delete $scope.panel.error;
- $scope.panelMeta.loading = true;
- $scope.updateTimeRange();
- var graphiteQuery = {
- range: $scope.range,
- targets: $scope.panel.targets,
- maxDataPoints: $scope.panel.span * 50
- };
- return graphiteSrv.query(graphiteQuery)
- .then($scope.receiveGraphiteData)
- .then(null, function(err) {
- $scope.panel.error = err.message || "Graphite HTTP Request Error";
- });
- };
- $scope.receiveGraphiteData = function(results) {
- $scope.panelMeta.loading = false;
- results = results.data;
- $scope.legend = [];
- var data = [];
- _.each(results, function(targetData) {
- var alias = targetData.target;
- var color = $scope.panel.aliasColors[alias] || $scope.colors[data.length];
- var yaxis = $scope.panel.aliasYAxis[alias] || 1;
- var tsOpts = {
- interval: $scope.interval,
- start_date: $scope.range && $scope.range.from,
- end_date: $scope.range && $scope.range.to,
- };
- var time_series = new timeSeries.ZeroFilled(tsOpts);
- _.each(targetData.datapoints, function(valueArray) {
- if (valueArray[0]) {
- time_series.addValue(valueArray[1] * 1000, valueArray[0]);
- }
- });
- var seriesInfo = {
- alias: alias,
- color: color,
- enable: true,
- yaxis: yaxis,
- };
- $scope.legend.push(seriesInfo);
- data.push({
- info: seriesInfo,
- time_series: time_series,
- });
- });
- $scope.render(data);
- };
- $scope.add_target = function() {
- $scope.panel.targets.push({target: ''});
- };
- $scope.enterFullscreenMode = function(options) {
- var docHeight = $(window).height();
- var editHeight = Math.floor(docHeight * 0.3);
- var fullscreenHeight = Math.floor(docHeight * 0.7);
- var oldTimeRange = $scope.range;
- $scope.height = options.edit ? editHeight : fullscreenHeight;
- $scope.editMode = options.edit;
- if (!$scope.fullscreen) {
- var closeEditMode = $rootScope.$on('panel-fullscreen-exit', function() {
- $scope.editMode = false;
- $scope.fullscreen = false;
- delete $scope.height;
- closeEditMode();
- $timeout(function() {
- $scope.$emit('render');
- if (oldTimeRange !== $scope.range) {
- $scope.dashboard.refresh();
- }
- });
- });
- }
- $(window).scrollTop(0);
- $scope.fullscreen = true;
- $rootScope.$emit('panel-fullscreen-enter');
- $timeout($scope.render);
- };
- $scope.openConfigureModal = function() {
- if ($scope.editMode) {
- $rootScope.$emit('panel-fullscreen-exit');
- return;
- }
- $scope.enterFullscreenMode({edit: true});
- };
- $scope.render = function(data) {
- $scope.$emit('render', data);
- };
- $scope.changeSeriesColor = function(series, color) {
- series.color = color;
- $scope.panel.aliasColors[series.alias] = series.color;
- $scope.render();
- };
- $scope.duplicate = function(addToRow) {
- addToRow = addToRow || $scope.row;
- var currentRowSpan = $scope.rowSpan(addToRow);
- if (currentRowSpan <= 8) {
- addToRow.panels.push(angular.copy($scope.panel));
- }
- else {
- var rowsList = $scope.dashboard.current.rows;
- var rowIndex = _.indexOf(rowsList, addToRow);
- if (rowIndex === rowsList.length - 1) {
- var newRow = angular.copy($scope.row);
- newRow.panels = [];
- $scope.dashboard.current.rows.push(newRow);
- $scope.duplicate(newRow);
- }
- else {
- $scope.duplicate(rowsList[rowIndex+1]);
- }
- }
- };
- $scope.toggleFullscreen = function() {
- if ($scope.fullscreen && !$scope.editMode) {
- $rootScope.$emit('panel-fullscreen-exit');
- return;
- }
- $scope.enterFullscreenMode({edit: false});
- };
- $scope.toggleSeries = function(info) {
- if ($scope.hiddenSeries[info.alias]) {
- delete $scope.hiddenSeries[info.alias];
- }
- else {
- $scope.hiddenSeries[info.alias] = true;
- }
- $scope.$emit('toggleLegend', info.alias);
- };
- $scope.toggleYAxis = function(info) {
- info.yaxis = info.yaxis === 2 ? 1 : 2;
- $scope.panel.aliasYAxis[info.alias] = info.yaxis;
- $scope.render();
- };
- $scope.updateColumnSpan = function(span) {
- $scope.panel.span = span;
- $timeout($scope.render);
- };
- });
- module.directive('histogramChart', function(filterSrv, $rootScope) {
- return {
- restrict: 'A',
- template: '<div> </div>',
- link: function(scope, elem) {
- var data, plot;
- var hiddenData = {};
- scope.$on('refresh',function() {
- if ($rootScope.fullscreen && !scope.fullscreen) {
- return;
- }
- scope.get_data();
- });
- scope.$on('toggleLegend', function(e, alias) {
- if (hiddenData[alias]) {
- data.push(hiddenData[alias]);
- delete hiddenData[alias];
- }
- render_panel();
- });
- // Receive render events
- scope.$on('render',function(event, d) {
- data = d || data;
- render_panel();
- });
- // Re-render if the window is resized
- angular.element(window).bind('resize', function() {
- render_panel();
- });
- // Function for rendering panel
- function render_panel() {
- if (!data) {
- return;
- }
- // IE doesn't work without this
- elem.css({height:scope.height || scope.row.height});
- _.each(data, function(series) {
- series.label = series.info.alias;
- series.color = series.info.color;
- });
- _.each(_.keys(scope.hiddenSeries), function(seriesAlias) {
- var dataSeries = _.find(data, function(series) {
- return series.info.alias === seriesAlias;
- });
- if (dataSeries) {
- hiddenData[dataSeries.info.alias] = dataSeries;
- data = _.without(data, dataSeries);
- }
- });
- // Set barwidth based on specified interval
- var barwidth = kbn.interval_to_ms(scope.panel.interval);
- var stack = scope.panel.stack ? true : null;
- // Populate element
- var options = {
- legend: { show: false },
- series: {
- stackpercent: scope.panel.stack ? scope.panel.percentage : false,
- stack: scope.panel.percentage ? null : stack,
- lines: {
- show: scope.panel.lines,
- // Silly, but fixes bug in stacked percentages
- fill: scope.panel.fill === 0 ? 0.001 : scope.panel.fill/10,
- lineWidth: scope.panel.linewidth,
- steps: scope.panel.steppedLine
- },
- bars: {
- show: scope.panel.bars,
- fill: 1,
- barWidth: barwidth/1.5,
- zero: false,
- lineWidth: 0
- },
- points: {
- show: scope.panel.points,
- fill: 1,
- fillColor: false,
- radius: scope.panel.pointradius
- },
- shadowSize: 1
- },
- yaxes: [],
- xaxis: {
- timezone: scope.panel.timezone,
- show: scope.panel['x-axis'],
- mode: "time",
- min: _.isUndefined(scope.range.from) ? null : scope.range.from.getTime(),
- max: _.isUndefined(scope.range.to) ? null : scope.range.to.getTime(),
- timeformat: time_format(scope.panel.interval),
- label: "Datetime",
- ticks: elem.width()/100
- },
- grid: {
- backgroundColor: null,
- borderWidth: 0,
- hoverable: true,
- color: '#c8c8c8'
- }
- };
- if(scope.panel.annotate.enable) {
- options.events = {
- levels: 1,
- data: scope.annotations,
- types: {
- 'annotation': {
- level: 1,
- icon: {
- icon: "icon-tag icon-flip-vertical",
- size: 20,
- color: "#222",
- outline: "#bbb"
- }
- }
- }
- //xaxis: int // the x axis to attach events to
- };
- }
- if(scope.panel.interactive) {
- options.selection = { mode: "x", color: '#666' };
- }
- // when rendering stacked bars, we need to ensure each point that has data is zero-filled
- // so that the stacking happens in the proper order
- var required_times = [];
- if (data.length > 1) {
- required_times = Array.prototype.concat.apply([], _.map(data, function (query) {
- return query.time_series.getOrderedTimes();
- }));
- required_times = _.uniq(required_times.sort(function (a, b) {
- // decending numeric sort
- return a-b;
- }), true);
- }
- for (var i = 0; i < data.length; i++) {
- var _d = data[i].time_series.getFlotPairs(required_times, scope.panel.nullPointMode);
- data[i].yaxis = data[i].info.yaxis;
- data[i].data = _d;
- data[i].info.y_format = data[i].yaxis === 1 ? scope.panel.y_format : scope.panel.y2_format;
- }
- configureAxisOptions(data, options);
- plot = $.plot(elem, data, options);
- 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.min,
- max: scope.panel.percentage && scope.panel.stack ? 100 : scope.panel.grid.max
- };
- options.yaxes.push(defaults);
- if (_.findWhere(data, {yaxis: 2})) {
- var secondY = _.clone(defaults);
- secondY.position = 'right';
- options.yaxes.push(secondY);
- configureAxisMode(options.yaxes[1], scope.panel.y2_format);
- }
- configureAxisMode(options.yaxes[0], scope.panel.y_format);
- }
- function configureAxisMode(axis, format) {
- if (format === 'bytes') {
- axis.mode = "byte";
- }
- if (format === 'short') {
- axis.tickFormatter = function(val) {
- return kbn.shortFormat(val,0);
- };
- }
- }
- function time_format(interval) {
- var _int = kbn.interval_to_seconds(interval);
- if(_int >= 2628000) {
- return "%Y-%m";
- }
- if(_int >= 10000) {
- return "%Y-%m-%d";
- }
- if(_int >= 60) {
- return "%H:%M<br>%m-%d";
- }
- return "%H:%M:%S";
- }
- var $tooltip = $('<div>');
- elem.bind("plothover", function (event, pos, item) {
- var group, value, timestamp;
- if (item) {
- if (item.series.info.alias || scope.panel.tooltip.query_as_alias) {
- group = '<small style="font-size:0.9em;">' +
- '<i class="icon-circle" style="color:'+item.series.color+';"></i>' + ' ' +
- (item.series.info.alias || item.series.info.query)+
- '</small><br>';
- } else {
- group = kbn.query_color_dot(item.series.color, 15) + ' ';
- }
- value = (scope.panel.stack && scope.panel.tooltip.value_type === 'individual') ?
- item.datapoint[1] - item.datapoint[2] :
- item.datapoint[1];
- if(item.series.info.y_format === 'bytes') {
- value = kbn.byteFormat(value,2);
- }
- if(item.series.info.y_format === 'short') {
- value = kbn.shortFormat(value,2);
- }
- timestamp = scope.panel.timezone === 'browser' ?
- moment(item.datapoint[0]).format('YYYY-MM-DD HH:mm:ss') :
- moment.utc(item.datapoint[0]).format('YYYY-MM-DD HH:mm:ss');
- $tooltip
- .html(
- group + value + " @ " + timestamp
- )
- .place_tt(pos.pageX, pos.pageY);
- } else {
- $tooltip.detach();
- }
- });
- elem.bind("plotselected", function (event, ranges) {
- filterSrv.setTime({
- from : moment.utc(ranges.xaxis.from).toDate(),
- to : moment.utc(ranges.xaxis.to).toDate(),
- });
- });
- }
- };
- });
- });
|