| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- /** @scratch /index/0
- * = Kibana
- *
- * // Why can't I have a preamble here?
- *
- * == Introduction
- *
- * Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for
- * ElasticSearch. Kibana is a snap to setup and start using. Written entirely in HTML and Javascript
- * it requires only a plain webserver, Kibana requires no fancy server side components.
- * Kibana strives to be easy to get started with, while also being flexible and powerful, just like
- * Elasticsearch.
- *
- * include::configuration/config.js.asciidoc[]
- *
- * include::panels.asciidoc[]
- *
- */
- define([
- 'angular',
- 'jquery',
- 'config',
- 'underscore',
- 'services/all'
- ],
- function (angular, $, config, _) {
- "use strict";
- var module = angular.module('kibana.controllers');
- module.controller('DashCtrl', function(
- $scope, $rootScope, $route, ejsResource, dashboard, alertSrv, panelMove, esVersion, keyboardManager) {
- $scope.requiredElasticSearchVersion = ">=0.90.3";
- $scope.editor = {
- index: 0
- };
- // For moving stuff around the dashboard.
- $scope.panelMoveDrop = panelMove.onDrop;
- $scope.panelMoveStart = panelMove.onStart;
- $scope.panelMoveStop = panelMove.onStop;
- $scope.panelMoveOver = panelMove.onOver;
- $scope.panelMoveOut = panelMove.onOut;
- $scope.init = function() {
- $scope.config = config;
- // Make stuff, including underscore.js available to views
- $scope._ = _;
- $scope.dashboard = dashboard;
- $scope.dashAlerts = alertSrv;
- $scope.esVersion = esVersion;
- // Clear existing alerts
- alertSrv.clearAll();
- $scope.reset_row();
- $scope.ejs = ejsResource(config.elasticsearch);
- $scope.bindKeyboardShortcuts();
- };
- $scope.bindKeyboardShortcuts = function() {
- $rootScope.$on('panel-fullscreen-enter', function() {
- $scope.fullscreenPanelExists = true;
- });
- $rootScope.$on('panel-fullscreen-exit', function() {
- $scope.fullscreenPanelExists = false;
- });
- keyboardManager.bind('ctrl+f', function(evt) {
- $rootScope.$emit('open-search', evt);
- }, { inputDisabled: true });
- keyboardManager.bind('ctrl+h', function() {
- var current = dashboard.current.hideControls;
- dashboard.current.hideControls = !current;
- dashboard.current.panel_hints = !current;
- }, { inputDisabled: true });
- keyboardManager.bind('ctrl+s', function(evt) {
- $rootScope.$emit('save-dashboard', evt);
- }, { inputDisabled: true });
- keyboardManager.bind('ctrl+r', function() {
- dashboard.refresh();
- }, { inputDisabled: true });
- keyboardManager.bind('ctrl+z', function(evt) {
- $rootScope.$emit('zoom-out', evt);
- }, { inputDisabled: true });
- keyboardManager.bind('esc', function() {
- var popups = $('.popover.in');
- if (popups.length > 0) {
- return;
- }
- $rootScope.$emit('panel-fullscreen-exit');
- }, { inputDisabled: true });
- };
- $scope.countWatchers = function (scopeStart) {
- var q = [scopeStart || $rootScope], watchers = 0, scope;
- while (q.length > 0) {
- scope = q.pop();
- if (scope.$$watchers) {
- watchers += scope.$$watchers.length;
- }
- if (scope.$$childHead) {
- q.push(scope.$$childHead);
- }
- if (scope.$$nextSibling) {
- q.push(scope.$$nextSibling);
- }
- }
- window.console.log(watchers);
- };
- $scope.isPanel = function(obj) {
- if(!_.isNull(obj) && !_.isUndefined(obj) && !_.isUndefined(obj.type)) {
- return true;
- } else {
- return false;
- }
- };
- $scope.add_row = function(dash,row) {
- dash.rows.push(row);
- };
- $scope.reset_row = function() {
- $scope.row = {
- title: '',
- height: '150px',
- editable: true,
- };
- };
- $scope.row_style = function(row) {
- return { 'min-height': row.collapse ? '5px' : row.height };
- };
- $scope.panel_path =function(type) {
- if(type) {
- return 'app/panels/'+type.replace(".","/");
- } else {
- return false;
- }
- };
- $scope.edit_path = function(type) {
- var p = $scope.panel_path(type);
- if(p) {
- return p+'/editor.html';
- } else {
- return false;
- }
- };
- $scope.pulldownTabStyle = function(i) {
- var classes = ['bgPrimary','bgSuccess','bgWarning','bgDanger','bgInverse','bgInfo'];
- i = i%classes.length;
- return classes[i];
- };
- $scope.setEditorTabs = function(panelMeta) {
- $scope.editorTabs = ['General','Panel'];
- if(!_.isUndefined(panelMeta.editorTabs)) {
- $scope.editorTabs = _.union($scope.editorTabs,_.pluck(panelMeta.editorTabs,'title'));
- }
- return $scope.editorTabs;
- };
- // This is whoafully incomplete, but will do for now
- $scope.parse_error = function(data) {
- var _error = data.match("nested: (.*?);");
- return _.isNull(_error) ? data : _error[1];
- };
- $scope.init();
- });
- });
|