| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /** @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',
- 'services/dashboard/all'
- ],
- function (angular, $, config, _) {
- "use strict";
- var module = angular.module('kibana.controllers');
- module.controller('DashCtrl', function(
- $scope, $rootScope, $timeout, ejsResource, dashboard, filterSrv, dashboardKeybindings,
- alertSrv, panelMove, keyboardManager, grafanaVersion) {
- $scope.requiredElasticSearchVersion = ">=0.90.3";
- $scope.editor = {
- index: 0
- };
- $scope.grafanaVersion = grafanaVersion[0] === '@' ? 'master' : grafanaVersion;
- // 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.filter = filterSrv;
- $scope.filter.init(dashboard.current);
- $rootScope.$on("dashboard-loaded", function(event, dashboard) {
- $scope.filter.init(dashboard);
- });
- // Clear existing alerts
- alertSrv.clearAll();
- $scope.reset_row();
- $scope.ejs = ejsResource(config.elasticsearch, config.elasticsearchBasicAuth);
- $scope.bindKeyboardShortcuts();
- };
- $scope.bindKeyboardShortcuts = dashboardKeybindings.shortcuts;
- $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.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
- ];
- $scope.init();
- });
- });
|