This directory contains a demo of our commercial plugins.
Assuming you have working docker
with docker-compose
, run:
docker-compose build docker-compose up
This will start a data node and a client node and publish the client node's 9200 port. The data nodes are not running http transport.
All config files are in the config
directory, everything is setup with
Shield and Marvel. There are 2 Users for Marvel (marvel_user
to be used to
access the UI and marvel_agent
used by the agent) and an all-powerful
es_admin
user. All users use password
as their password.
All data will be stored in the data
directory and thus preseved during
docker restarts.
To change any of the user information run the esusers
script:
docker run --volume $PWD/config:/config elastic ./shield/esusers
logstash-cluster.yml
is a docker compose file for a demo with logstash, it
uses the cluster with all the configured plugins as described above, a simple
redis instance for queueing and 2 logstash containers - logstash-input
and
logstash-output
. Logstash input listens on port 1234
for any json and
passes it into the redis container (called queue
). From there it is picked
up by logstash-output
and stuck directly into elasticsearch using the
es_admin
user. Relevant configuration files are in config/logstash.conf
and config/logstash-input.conf
.
Kibana credentials are kibana/password
To create a watch run the 0-setup.sh
script from the watcher
directory.
The watch definition itself can be found in watch.yaml
. The script
1-generate-data.sh
will then create documents in elasticsearch that should
trigger the watch.
Note
The demo scripts assume anonymous login is enabled, either edit the scripts or enable anonymous access to your cluster by uncommenting the relevant portion of the es config.
The current setup uses 3 data nodes docker services : client, data1, data2 The client service is started as a client node or as a data node if a Marvel console is required. (Can't marvel on a client node)