| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- labjs = labjs.script("common/lib/panels/jquery.flot.js")
- .script("common/lib/panels/jquery.flot.time.js")
- .script("common/lib/panels/jquery.flot.stack.js")
- angular.module('kibana.stackedquery', [])
- .directive('stackedquery', function() {
- return {
- restrict: 'A',
- link: function(scope, elem, attrs) {
- // Specify defaults for ALL directives
- var _d = {
- queries : ["*"],
- interval: secondsToHms(calculate_interval(scope.from,scope.to,40,0)/1000),
- colors : ["#BF3030","#1D7373","#86B32D","#A98A21","#411F73"],
- show : ['bars']
- }
- // Set ready flag and fill parameters (REQUIRED IN EVERY PANEL)
- scope.$watch(function () {
- return (attrs.params && scope.index) ? true : false;
- }, function (ready) {
- scope.ready = ready;
- if(ready) {
- scope.params = JSON.parse(attrs.params);
- _.each(_d, function(v, k) {
- scope.params[k] = _.isUndefined(scope.params[k])
- ? _d[k] : scope.params[k];
- });
- }
- });
- // Also get the data if time frame changes.
- // (REQUIRED IN EVERY PANEL)
- scope.$watch(function() {
- return angular.toJson([scope.from, scope.to, scope.ready])
- }, function(){
- if(scope.ready)
- if (_.isUndefined(attrs.params.interval))
- scope.params.interval = secondsToHms(
- calculate_interval(scope.from,scope.to,50,0)/1000),
- get_data(scope,elem,attrs);
- });
- // Re-rending the panel if it is resized,
- scope.$watch('data', function() {
- if(scope.ready)
- render_panel(scope,elem,attrs);
- });
- // Or if the model changes
- angular.element(window).bind('resize', function(){
- render_panel(scope,elem,attrs);
- });
- // Function for getting data
- function get_data(scope,elem,attrs) {
- var params = scope.params;
- var ejs = scope.ejs;
- var request = ejs.Request().indices(scope.index);
-
- // Build the question part of the query
- var queries = [];
- _.each(params.queries, function(v) {
- queries.push(ejs.FilteredQuery(
- ejs.QueryStringQuery(v || '*'),
- ejs.RangeFilter(config.timefield)
- .from(scope.from)
- .to(scope.to)
- .cache(false))
- )
- });
- // Build the facet part
- _.each(queries, function(v) {
- request = request
- .facet(ejs.DateHistogramFacet(_.indexOf(queries,v))
- .field(config.timefield)
- .interval(params.interval)
- .facetFilter(ejs.QueryFilter(v))
- )
- })
- // Then run it
- var results = request.doSearch();
- // Populate scope when we have results
- results.then(function(results) {
- scope.hits = results.hits.total;
- scope.data = results.facets;
- });
- }
- // Function for rendering panel
- function render_panel(scope,elem,attrs) {
- // Parse our params object
- var params = scope.params;
- // Determine format
- var show = _.isUndefined(params.show) ? {
- bars: true, lines: false, points: false, fill: false
- } : {
- lines: _.indexOf(params.show,'lines') < 0 ? false : true,
- bars: _.indexOf(params.show,'bars') < 0 ? false : true,
- points: _.indexOf(params.show,'points') < 0 ? false : true,
- fill: _.indexOf(params.show,'fill') < 0 ? false : true
- }
- scope.graph = [];
- // Push null values at beginning and end of timeframe
- _.each(scope.data, function(v, k) {
- var series = {};
- var data = [[scope.from.getTime(), null]];
- _.each(v.entries, function(v, k) {
- data.push([v['time'],v['count']])
- });
- data.push([scope.to.getTime(), null])
- series.data = {
- label: params.queries[k],
- data: data,
- color: params.colors[k%params.colors.length]
- };
- scope.graph.push(series.data)
- });
- // Set barwidth based on specified interval
- var barwidth = interval_to_seconds(params.interval)*1000
- // Populate element
- $.plot(elem, scope.graph, {
- legend: {
- position: "nw",
- labelFormatter: function(label, series) {
- return '<span class="legend">' + label + ' / ' + params.interval
- + '</span>';
- }
- },
- series: {
- stack: 0,
- lines: { show: show.lines, fill: show.fill },
- bars: { show: show.bars, fill: 1, barWidth: barwidth/1.8 },
- points: { show: show.points },
- color: params.color,
- shadowSize: 1
- },
- yaxis: { min: 0, color: "#000" },
- xaxis: {
- mode: "time",
- timeformat: "%H:%M:%S<br>%m-%d",
- label: "Datetime",
- color: "#000",
- },
- grid: {
- backgroundColor: '#fff',
- borderWidth: 0,
- borderColor: '#eee',
- color: "#eee",
- hoverable: true,
- }
- });
- //elem.show();
- }
- }
- };
- })
|