Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geerlingguy/ansible-role-kibana
Ansible Role - Kibana
https://github.com/geerlingguy/ansible-role-kibana
analytics ansible dashboard data elk kibana logging logstash role
Last synced: 7 days ago
JSON representation
Ansible Role - Kibana
- Host: GitHub
- URL: https://github.com/geerlingguy/ansible-role-kibana
- Owner: geerlingguy
- License: mit
- Created: 2014-08-22T20:00:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T19:22:27.000Z (6 months ago)
- Last Synced: 2025-01-08T03:16:39.851Z (14 days ago)
- Topics: analytics, ansible, dashboard, data, elk, kibana, logging, logstash, role
- Language: Jinja
- Homepage: https://galaxy.ansible.com/geerlingguy/kibana/
- Size: 60.5 KB
- Stars: 123
- Watchers: 8
- Forks: 196
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-list-ansible - ansible-role-kibana - Kibana (role)
README
# Ansible Role: Kibana
[![CI](https://github.com/geerlingguy/ansible-role-kibana/workflows/CI/badge.svg?event=push)](https://github.com/geerlingguy/ansible-role-kibana/actions?query=workflow%3ACI)
An Ansible Role that installs Kibana on RedHat/CentOS or Debian/Ubuntu.
## Requirements
None.
## Role Variables
Available variables are listed below, along with default values (see `defaults/main.yml`):
kibana_version: "7.x"
The version of kibana to install.
kibana_package: kibana
kibana_package_state: presentThe specific package to be installed. You can specify a version of the package using the correct syntax for your platform and package manager by changing the package name. You can also control the package state (e.g. `present`, `absent`, or `latest`).
kibana_service_state: started
kibana_service_enabled: trueControls whether the `kibana` service is started and enabled on system boot.
kibana_config_template: kibana.yml.j2
kibana_config_file_path: /etc/kibana/kibana.ymlThe template to use for the Kibana config file, and the path to which the config file will be written.
kibana_server_port: 5601
kibana_server_host: "0.0.0.0"The FQDN or IP address and port Kibana should use.
kibana_elasticsearch_url: "http://localhost:9200"
The URL (including port) over which Kibana will connect to Elasticsearch.
kibana_elasticsearch_username: ""
kibana_elasticsearch_password: ""If Elasticsearch is protected by HTTP basic authentication, set the username and password so Kibana can connect.
## Dependencies
None.
## Example Playbook
- hosts: kibana
roles:
- geerlingguy.kibana## License
MIT / BSD
## Author Information
This role was created in 2014 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/).