This set of playbooks install an Elasticsearch cluster, Logstash and a kibana dashboard inside containers and then install Topbeat in your cloud to ship system metrics to the Elastic cluster. Change-Id: I0c8c853ee48bd9278bd7b08719be4bde5f8c3df6
install Elk stack with topbeat to gather metrics
- tags
-
openstack, ansible
About this repository
This set of playbooks will deploy elk cluster (Elasticsearch, Logstash, Kibana) with topbeat to gather metrics from hosts metrics to the ELK cluster.
Process
Clone the elk-osa repo
cd /opt
git clone https://github.com/openstack/openstack-ansible-opsCopy the env.d file into place
cd openstack-ansible-ops
cp env.d/elk.yml /etc/openstack_deploy/env.d/Copy the conf.d file into place
cp conf.d/elk.yml /etc/openstack_deploy/conf.d/In elk.yml, list your logging hosts under elastic-logstash_hosts to create the elasticsearch cluster in multiple containers and one logging host under kibana_hosts to create the kibana container
vi /etc/openstack_deploy/conf.d/elk.ymlCreate the containers
cd /opt/openstack-ansible-playbooks
openstack-ansible lxc-containers-create.yml -e 'container_group=elastic-logstash:kibana'install master/data elasticsearch nodes on the elastic-logstash containers
cd /opt/openstack-ansible-ops
openstack-ansible installElastic.yml -e elk_hosts=elastic-logstash -e node_master=true -e node_data=trueInstall an Elasticsearch client on the kibana container to serve as a loadbalancer for the Kibana backend server
openstack-ansible installElastic.yml -e elk_hosts=kibana -e node_master=false -e node_data=falseInstall Logstash on all the elastic containers
openstack-ansible installLogstash.ymlInstallKibana on the kibana container
openstack-ansible installKibana.yml(Optional) Reverse proxy kibana container to your loadbalancer host
openstack-ansible reverseProxyKibana.ymlload topbeat indices into elastic-search and kibana
openstack-ansible loadKibana.ymlinstall Topbeat everywhere to start shipping metrics to our logstash instances
openstack-ansible installTopbeat.yml --forks 100