/cerebro

Primary LanguageJavaScript

Cerebro

cerebro is an open source(MIT License) elasticsearch web admin tool.

##Installation

##Configuration You can further customize Cerebro by editing its conf/application.conf file.

###List of known hosts A list of predefined hosts can be defined for quicker access. If host is password protected, authentication should be also set.

Example:

hosts: [
	{
		host: http://localhost:9200
	},
	{
    	host = "http://some-authenticated-host:9200",
  		auth = {
       		username = "username"
			password = "secret-password"
	}
]