diff --git a/README.md b/README.md
index f5eec18..865c610 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,8 @@ To get started, take a look the [installation](#installation) steps, [usage](#co
- [Form data](#form-data)
- [Params](#params)
- [Endpoints](#get-)
+- [Logging](#logging)
+ - [Fluentd log ingestion](#fluentd-log-ingestion)
- [Authors](#authors)
- [License](#license)
@@ -1168,6 +1170,60 @@ Accepts: `image/*, multipart/form-data`. Content-Type: `image/*`
- interlace `bool`
- aspectratio `string`
+## Logging
+
+Imaginary uses an [apache compatible log format](/log.go).
+
+### Fluentd log ingestion
+
+You can ingest Imaginary logs with fluentd using the following fluentd config :
+
+```
+# use your own tag name (*.imaginary for this example)
+
+ @type parser
+ key_name log
+ reserve_data true
+
+
+ @type multi_format
+ # access logs parser
+
+ format regexp
+ expression /^[^ ]* [^ ]* [^ ]* \[(?
+ # warnings / error logs parser
+
+ format none
+ message_key message
+
+
+
+
+
+ @type rewrite_tag_filter
+
+ # Logs with code field are access logs, and logs without are error logs
+
+ key code
+ pattern ^.+$
+ tag ${tag}.access
+
+
+ key code
+ pattern ^.+$
+ invert true
+ tag ${tag}.error
+
+
+```
+
+In the end, access records are tagged with `*.imaginary.access`, and warning /
+error records are tagged with `*.imaginary.error`.
+
## Support
### Backers