Unverified Commit 8e51d140 authored by Tom Moulard's avatar Tom Moulard
Browse files

fluentd: removing it from the project

parent 3af57cf1
Loading
Loading
Loading
Loading

fluentd/Dockerfile

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
FROM fluent/fluentd:v0.12
RUN ["gem", "install", "fluent-plugin-elasticsearch", "--no-rdoc", "--no-ri", "--version", "1.9.5"]
 No newline at end of file

fluentd/conf/fluent.conf

deleted100644 → 0
+0 −24
Original line number Diff line number Diff line
<source>
  @type forward
  port 24224
  bind 0.0.0.0
</source>

<match *.**>
  @type copy
  <store>
    @type elasticsearch
    host elasticsearch
    port 9200
    logstash_format true
    logstash_prefix fluentd
    logstash_dateformat %Y%m%d
    include_tag_key true
    type_name access_log
    tag_key @log_name
    flush_interval 1s
  </store>
  <store>
    @type stdout
  </store>
</match>