mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Removing a bunch of exteranous junk
This commit is contained in:
parent
2ef4c27d7f
commit
e82b2feb3b
6 changed files with 11 additions and 6 deletions
6
TODOS.md
6
TODOS.md
|
@ -10,6 +10,12 @@
|
|||
- a legit way to update the index pattern
|
||||
- **[src/kibana/apps/settings/sections/indices/_create.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/settings/sections/indices/_create.js)**
|
||||
- we should probably display a message of some kind
|
||||
- **[src/kibana/bower_components/Faker/examples/js/prettyPrint.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/bower_components/Faker/examples/js/prettyPrint.js)**
|
||||
- Make cross-browser functional */
|
||||
- **[src/kibana/bower_components/Faker/lib/address.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/bower_components/Faker/lib/address.js)**
|
||||
- change all these methods that accept a boolean to instead accept an options hash.
|
||||
- **[src/kibana/bower_components/Faker/lib/phone_number.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/bower_components/Faker/lib/phone_number.js)**
|
||||
- FIXME – [ ] this is strange passing in an array index.
|
||||
- **[src/kibana/bower_components/ace-builds/src/ace.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/bower_components/ace-builds/src/ace.js)**
|
||||
- message
|
||||
- message
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#!/usr/bin/env ruby
|
||||
require "optparse"
|
||||
require "pp"
|
||||
require 'rubygems'
|
||||
require 'puma/cli'
|
||||
require "yaml"
|
||||
|
|
|
@ -7,6 +7,7 @@ require "json"
|
|||
require "lib/JSONLogger"
|
||||
require "lib/ColorLogger"
|
||||
require "routes/home"
|
||||
require "sinatra/json"
|
||||
require "routes/proxy"
|
||||
|
||||
class Logger
|
||||
|
@ -16,6 +17,8 @@ end
|
|||
module Kibana
|
||||
class App < Sinatra::Base
|
||||
|
||||
helpers Sinatra::JSON
|
||||
|
||||
configure do
|
||||
logger = Logger.new(STDOUT)
|
||||
logger.formatter = proc do |severity, datetime, progname, msg|
|
||||
|
|
|
@ -44,8 +44,6 @@ module Kibana
|
|||
server.min_threads = min
|
||||
server.max_threads = max
|
||||
|
||||
yield server if block_given?
|
||||
|
||||
begin
|
||||
log("Kibana server started on tcp://#{options[:host]}:#{options[:port]} in #{ENV['RACK_ENV']} mode.")
|
||||
server.run.join
|
||||
|
|
|
@ -14,7 +14,7 @@ module Kibana
|
|||
set :root, Kibana.global_settings[:root]
|
||||
set :public_folder, Kibana.global_settings[:public_folder]
|
||||
set :httponly, true
|
||||
set :config, Kibana.global_settings[:config].clone
|
||||
set :config, config
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -5,7 +5,6 @@ define(function (require) {
|
|||
require('angular-route');
|
||||
|
||||
// Load kibana and its applications
|
||||
require('index');
|
||||
require('apps/discover/index');
|
||||
|
||||
var rison;
|
||||
|
@ -55,4 +54,4 @@ define(function (require) {
|
|||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue