Recipe Csv To Elasticsearch


Last updated
Was this helpful?


Last updated
Was this helpful?
Was this helpful?
$ gem install fluentd
$ gem install fluent-plugin-elasticsearch
$ touch fluentd.conf<source>
@type tail
path /var/log/httpd-access.log #...or where you placed your Apache access log
pos_file /var/log/td-agent/httpd-access.log.pos # This is where you record file position
tag foobar.csv #fluentd tag!
format csv
keys key1, key2, key3 # e.g., user_id, timestamp, action
time_key key2 # Specify the column that you want to use as timestamp
</source>
<match **>
@type elasticsearch
logstash_format true
host <hostname> #(optional; default="localhost")
port <port> #(optional; default=9200)
index_name <index name> #(optional; default=fluentd)
type_name <type name> #(optional; default=fluentd)
</match>$ fluentd -c fluentd.conf