Removed Marvel. Marvel suport is now integrated in another branch.

This commit is contained in:
Anthony Lapenna 2015-11-05 14:04:33 +01:00
parent 85d8bac979
commit bad736978a
4 changed files with 1 additions and 10 deletions

View File

@ -52,11 +52,7 @@ $ nc localhost 5000 < /path/to/logfile.log
And then access Kibana UI by hitting [http://localhost:5601](http://localhost:5601) with a web browser.
*Note*: The default index will be the Marvel index, in order to use the Logstash index you'll need to create it first. Go to Kibana settings to create your index.
After that, you'll be able to switch to the newly created logstash index in the Discover view.
You can also access:
* Marvel: [http://localhost:5601/app/marvel](http://localhost:5601/app/marvel)
* Sense: [http://localhost:5601/app/sense](http://localhost:5601/app/sense)
*Note*: In order to use Sense, you'll need to query the IP address associated to your *network device* instead of localhost.

View File

@ -1,5 +1,5 @@
elasticsearch:
build: elasticsearch/
image: elasticsearch:latest
command: elasticsearch -Des.network.host=0.0.0.0
ports:
- "9200:9200"

View File

@ -1,4 +0,0 @@
FROM elasticsearch:latest
RUN plugin install license
RUN plugin install marvel-agent

View File

@ -5,7 +5,6 @@ RUN apt-get update && apt-get install -y netcat
COPY entrypoint.sh /tmp/entrypoint.sh
RUN chmod +x /tmp/entrypoint.sh
RUN kibana plugin --install elasticsearch/marvel/latest
RUN kibana plugin --install elastic/sense
CMD ["/tmp/entrypoint.sh"]