| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /** @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',
- 'config',
- 'underscore',
- 'services/all'
- ],
- function (angular, config, _) {
- "use strict";
- var module = angular.module('kibana.controllers');
- module.controller('DashCtrl', function(
- $scope, $route, ejsResource, fields, dashboard, alertSrv, panelMove, esVersion) {
- $scope.requiredElasticSearchVersion = ">=0.20.5";
- $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();
- // Provide a global list of all seen fields
- $scope.fields = fields;
- $scope.reset_row();
- $scope.ejs = ejsResource(config.elasticsearch);
- };
- $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.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();
- });
- });
|