diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index a4a1bfe2b4a09..0000000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,19 +0,0 @@ -If you have a bugfix or new feature that you would like to contribute to Kibana, please **find or open an issue about it before you start working on it.** Talk about what you would like to do. It may be that somebody is already working on it, or that there are particular issues that you should know about before implementing the change. - -We enjoy working with contributors to get their code accepted. There are many approaches to fixing a problem and it is important to find the best approach before writing too much code. - -The process for contributing to any of the Elasticsearch repositories is similar. - -1. Sign the contributor license agreement -Please make sure you have signed the [Contributor License Agreement](http://www.elasticsearch.org/contributor-agreement/). We are not asking you to assign copyright to us, but to give us the right to distribute your code without restriction. We ask this of all contributors in order to assure our users of the origin and continuing existence of the code. You only need to sign the CLA once. - -2. Run the grunt build process and ensure it completes without errors with your changes. - -3. Rebase your changes -Update your local repository with the most recent code from the main Kibana repository, and rebase your branch on top of the latest master branch. We prefer your changes to be squashed into a single commit. - -4. Submit a pull request -Push your local changes to your forked copy of the repository and submit a pull request. In the pull request, describe what your changes do and mention the number of the issue where discussion has taken place, eg “Closes #123″. - -Then sit back and wait. There will probably be discussion about the pull request and, if any changes are needed, we would love to work with you to get your pull request merged into Kibana. - diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index a2db929f2b235..0000000000000 --- a/Gruntfile.js +++ /dev/null @@ -1,37 +0,0 @@ -/* jshint node:true */ -'use strict'; -module.exports = function (grunt) { - - var config = { - pkg: grunt.file.readJSON('package.json'), - baseDir: '.', - srcDir: 'src', - destDir: 'dist', - tempDir: 'tmp', - }; - - // load plugins - require('load-grunt-tasks')(grunt); - - // load task definitions - grunt.loadTasks('tasks'); - - // Utility function to load plugin settings into config - function loadConfig(config,path) { - require('glob').sync('*', {cwd: path}).forEach(function(option) { - var key = option.replace(/\.js$/,''); - // If key already exists, extend it. It is your responsibility to avoid naming collisions - config[key] = config[key] || {}; - grunt.util._.extend(config[key], require(path + option)(config)); - }); - // technically not required - return config; - } - - // Merge that object with what with whatever we have here - loadConfig(config,'./tasks/options/'); - - // pass the config to grunt - grunt.initConfig(config); - -}; \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index b2ba7010bf34c..0000000000000 --- a/LICENSE.md +++ /dev/null @@ -1,13 +0,0 @@ -Copyright 2012-2013 Elasticsearch BV - -Licensed under the Apache License, Version 2.0 (the "License"); you -may not use this file except in compliance with the License. You may -obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied. See the License for the specific language governing -permissions and limitations under the License. diff --git a/README.md b/README.md deleted file mode 100644 index 88716ef416b55..0000000000000 --- a/README.md +++ /dev/null @@ -1,51 +0,0 @@ -# Kibana - -__NOTE__: You have reached the Kibana 3 repository. -Kibana 3 is a completely new version of Kibana written entirely in HTML and Javascript. You can find -the Kibana 2 repository at [https://github.com/rashidkpc/Kibana](https://github.com/rashidkpc/Kibana) - -More information about Kibana 3 can be found at [http://www.elasticsearch.org/overview/kibana/](http://www.elasticsearch.org/overview/kibana/) - -## Overview - -Kibana is an open source (Apache Licensed), browser based analytics and search interface to Logstash -and other timestamped data sets stored in ElasticSearch. With those in place Kibana is a snap to -setup and start using (seriously). Kibana strives to be easy to get started with, while also being -flexible and powerful - -### Requirements -* A modern web browser. The latest version of Chrome, Safari and Firefox have all been tested to -work. IE9 and greater should work. IE8 does not. -* A webserver. No extensions are required, as long as it can serve plain html it will work -* A browser reachable Elasticsearch server. Port 9200 must be open, or a proxy configured to allow -access to it. - -### Installation - -1. Download and extract [http://download.elasticsearch.org/kibana/kibana/kibana-latest.zip](http://download.elasticsearch.org/kibana/kibana/kibana-latest.zip) to your webserver. -2. Edit config.js in your deployed directory to point to your elasticsearch server. This should __not be -http://localhost:9200__, but rather the fully qualified domain name of your elasticsearch server. -The url entered here _must be reachable_ by your browser. -3. Point your browser at your installation. If you're using Logstash with the default indexing -configuration the included Kibana logstash interface should work nicely. - -### FAQ -__Q__: Why doesnt it work? I have http://localhost:9200 in my config.js, my webserver and elasticsearch -server are on the same machine -__A__: Kibana 3 does not work like previous versions of Kibana. To ease deployment, the server side -component has been eliminated. Thus __the browser connects directly to Elasticsearch__. The default -config.js setup works for the webserver+Elasticsearch on the same machine scenario. Do not set it -to http://localhost:9200 unless your browser and elasticsearch are on the same machine - -__Q__: How do I secure this? I don't want to leave 9200 open. -__A__: A simple nginx virtual host and proxy configuration can be found in the sample/nginx.conf - -### Support - -If you have questions or comments the best place to reach me is #logstash or #elasticsearch on irc.freenode.net - -### Contributing - -Please see [CONTRIBUTING.md](https://github.com/elasticsearch/kibana/blob/master/CONTRIBUTING.md). -If you have a bugfix or new feature that you would like to contribute to Kibana, **please find or open an issue -about it first.** diff --git a/index.html b/index.html deleted file mode 100644 index c55ad58364c65..0000000000000 --- a/index.html +++ /dev/null @@ -1,87 +0,0 @@ - - -
--
-
- If you really want to run from source you can do so from the src/ folder. After upgrading you may need to clear your browsers cache to see all of the new features.