state with example conf
diff --git a/conf/td-agent.conf b/conf/td-agent.conf
new file mode 100755
index 0000000..11ab2c7
--- /dev/null
+++ b/conf/td-agent.conf
@@ -0,0 +1,44 @@
+<source>
+  type syslog
+  port 42185
+  tag syslog
+</source>
+
+<source>
+  type forward
+</source>
+
+<source>
+  type tail
+  format apache2
+  path /var/log/httpd/access_log
+  pos_file /var/log/td-agent/apache2.access_log.pos
+  tag mongo.apache.access
+</source>
+ <source>
+    type forward
+  </source>
+<match mongo.*.*>
+  # plugin type
+  type mongo
+
+  # mongodb db + collection
+  database apache
+  collection access
+
+  # mongodb host + port
+  host localhost
+  port 27017
+
+  # interval
+  flush_interval 10s
+</match>
+
+<match mongo.*.*>
+  host 10.10.10.180
+  port 9200
+
+  type elasticsearch
+  logstash_format true
+  flush_interval 10s # for testing
+</match>
\ No newline at end of file