mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
/*
|
|
|
|
## Debug
|
|
|
|
Shows the exchange of events between panels. Disabled by default and usually
|
|
should be. This panel exists in the ALL group by default so that it receives
|
|
all of the events from every panel
|
|
|
|
### Parameters
|
|
* size :: How many events to show
|
|
* style :: A hash containing css style parameters
|
|
|
|
### Group Events
|
|
#### Receives
|
|
* $kibana_debug :: Contains a meta object of any event sent
|
|
|
|
*/
|
|
|
|
angular.module('kibana.debug', [])
|
|
.controller('debug', function($scope, eventBus) {
|
|
|
|
// Set and populate defaults
|
|
var _d = {
|
|
group : "ALL",
|
|
style : {'font-size':'9pt'},
|
|
size : 20
|
|
}
|
|
_.defaults($scope.panel,_d)
|
|
|
|
$scope.init = function () {
|
|
|
|
$scope.set_listeners($scope.panel.group)
|
|
// Now that we're all setup, request the time from our group
|
|
eventBus.broadcast($scope.$id,$scope.panel.group,"get_time")
|
|
|
|
$scope.events = []
|
|
}
|
|
|
|
$scope.toggle_details = function(event) {
|
|
event.details = event.details ? false : true;
|
|
}
|
|
|
|
$scope.set_listeners = function(group) {
|
|
eventBus.register($scope,'$kibana_debug',function(event,data,header) {
|
|
if($scope.events.length >= $scope.panel.size)
|
|
$scope.events = $scope.events.slice(0,$scope.panel.size-1)
|
|
|
|
$scope.events.unshift({header:header,data:data})
|
|
});
|
|
}
|
|
|
|
}); |