Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 1 | |
Aleš Komárek | ac2c0fb | 2017-04-11 10:14:46 +0200 | [diff] [blame^] | 2 | =============== |
| 3 | Fluentd Formula |
| 4 | =============== |
Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 5 | |
Aleš Komárek | ac2c0fb | 2017-04-11 10:14:46 +0200 | [diff] [blame^] | 6 | Many web/mobile applications generate huge amount of event logs |
| 7 | (c,f. login, logout, purchase, follow, etc). Analyzing these event |
| 8 | logs can be quite valuable for improving services. However, collecting |
| 9 | these logs easily and reliably is a challenging task. |
Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 10 | |
Aleš Komárek | ac2c0fb | 2017-04-11 10:14:46 +0200 | [diff] [blame^] | 11 | Fluentd solves the problem by having: easy installation, small footprint, |
| 12 | plugins reliable buffering, log forwarding, etc. |
Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 13 | |
Aleš Komárek | ac2c0fb | 2017-04-11 10:14:46 +0200 | [diff] [blame^] | 14 | Sample Pillars |
| 15 | ============== |
| 16 | |
| 17 | .. code-block:: yaml |
Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 18 | |
Michael Kuty | 59f90a4 | 2014-05-04 11:46:24 +0200 | [diff] [blame] | 19 | fluentd: |
| 20 | server: |
| 21 | enabled: true |
| 22 | plugins: |
| 23 | - fluent-plugin-elasticsearch |
| 24 | - fluent-plugin-mongo |
Michael Kuty | 5a2f6c5 | 2014-05-04 13:00:37 +0200 | [diff] [blame] | 25 | config: |
| 26 | - name: forward |
| 27 | type: input |
| 28 | bind: |
| 29 | port: 24224 |
| 30 | host: 0.0.0.0 |
| 31 | - name: elasticsearch |
| 32 | type: output |
| 33 | bind: |
| 34 | port: 9200 |
| 35 | host: localhost |
| 36 | - name: mongodb |
| 37 | type: output |
| 38 | bind: |
| 39 | port: localhost |
| 40 | host: localhost |
Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 41 | |
Aleš Komárek | ac2c0fb | 2017-04-11 10:14:46 +0200 | [diff] [blame^] | 42 | More Information |
| 43 | ================ |
Michael Kutý | e554d79 | 2014-04-12 21:54:46 +0200 | [diff] [blame] | 44 | |
| 45 | * http://fluentd.org/ |
| 46 | * http://docs.fluentd.org/ |
Aleš Komárek | ac2c0fb | 2017-04-11 10:14:46 +0200 | [diff] [blame^] | 47 | * http://docs.fluentd.org/categories/recipes |