b7a6ceb086
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
22 lines
540 B
YAML
22 lines
540 B
YAML
# elastic search vars
|
|
elastic_interface: "['_eth1_', '_local_']"
|
|
elastic_port: 9200
|
|
cluster_name: openstack_elk
|
|
node_name: ${HOSTNAME}
|
|
|
|
|
|
# kibana vars
|
|
kibana_interface: 0.0.0.0
|
|
kibana_port: 5601
|
|
kibana_username: kibanaadmin
|
|
kibana_password: secrete
|
|
|
|
nginx_port: 81
|
|
server_name: server_name
|
|
kibana_private_ip: "{{ hostvars[groups['kibana'][0]]['ansible_ssh_host'] }}"
|
|
|
|
logstash_ssl_self_signed_subject: "/C=US/ST=Texas/L=San Antonio/O=IT/CN={{ server_name }}/subjectAltName=IP.1={{ elk_server_private_ip }}"
|
|
logstash_beat_input_port: 5044
|
|
|
|
|