Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ansible/roles/fluentd
1 result
Show changes
Commits on Source (1)
# Documentation
- http://www.fluentd.org
- https://docs.fluentd.org
- Plugins: http://www.fluentd.org/plugins
- Time Format: http://ruby-doc.org/core-1.9.3/Time.html#method-i-strftime
- Format Regex Editor: https://fluentular.herokuapp.com/
- Changelog: https://support.treasuredata.com/hc/en-us/articles/360001479187-The-td-agent-ChangeLog
# Preparing SSL Cert
Create SSL-Cert once upfront in the inventory and use the passphrase similar to `{{ fluentd_cert_passphrase }}`:
```
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650 -subj '/CN={{ fluentd_host }}'
```
# Tutorials
- https://sonnguyen.ws/centralize-docker-logs-with-fluentd-elasticsearch-and-kibana/
- https://sonnguyen.ws/monitor-nginx-response-time-with-fluentd-kibana-and-elasticsearch/
You find all the details in the [full documentation](https://devops-tools.docs.lakedrops.com/ansible/roles/fluentd/).