gitextract_t1sc7g26/ ├── .ansible-lint ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults/ │ └── main.yml ├── files/ │ └── filters/ │ ├── 10-syslog.conf │ ├── 11-nginx.conf │ ├── 12-apache.conf │ ├── 14-solr.conf │ └── 15-drupal.conf ├── handlers/ │ └── main.yml ├── meta/ │ └── main.yml ├── molecule/ │ └── default/ │ ├── converge.yml │ ├── molecule.yml │ └── requirements.yml ├── tasks/ │ ├── config.yml │ ├── main.yml │ ├── plugins.yml │ ├── setup-Debian.yml │ ├── setup-RedHat.yml │ └── ssl.yml └── templates/ ├── 01-beats-input.conf.j2 ├── 02-local-syslog-input.conf.j2 ├── 30-elasticsearch-output.conf.j2 └── logstash.repo.j2