diff --git a/poc-datacollector/modules/ROOT/nav.adoc b/poc-datacollector/modules/ROOT/nav.adoc
index 1f5d013..6d3979d 100644
--- a/poc-datacollector/modules/ROOT/nav.adoc
+++ b/poc-datacollector/modules/ROOT/nav.adoc
@@ -5,5 +5,6 @@
** xref:index-mongo.adoc[Mongo]
** xref:index-redis.adoc[Redis]
* xref:index-src.adoc[src-files]
+** xref:doc-dummy_service.adoc[dummy_service]
* xref:index-usage.adoc[Usage]
** xref:index-dummy_service.adoc[dummy_service]
diff --git a/poc-datacollector/modules/ROOT/pages/doc-dummy_service.adoc b/poc-datacollector/modules/ROOT/pages/doc-dummy_service.adoc
new file mode 100644
index 0000000..988ea65
--- /dev/null
+++ b/poc-datacollector/modules/ROOT/pages/doc-dummy_service.adoc
@@ -0,0 +1,162 @@
+= dummy_service
+
+
+
+
+
+== WriteToMongo/fluent/fluent.conf
+
+
+[source,javascript]
+----
+# config
+
+ @type stdout
+
+
+# input log
+
+
+# input stats
+
+
+# output mongo log*
+
+ @type copy
+ copy_mode deep
+
+ @type mongo
+
+ connection_string mongodb://mongo.poc-datacollector_datacollector-net:27017/fluentdb
+
+ #database fluentdb
+ collection test
+ #host mongo.poc-datacollector_datacollector-net
+ #port 27017
+
+ num_retries 60
+ capped
+ capped_size 100m
+
+ # key name of timestamp
+ time_key time
+
+
+
+ retry_wait 50s
+ flush_mode immediate
+ #flush_interval 10s
+
+
+
+
+ @type stdout
+
+
+
+ @type file
+ path /tmp/mylog
+
+ timekey 1d
+ timekey_use_utc true
+ timekey_wait 10s
+
+
+
+
+
+# output mongo log*
+#
+# @type copy
+#
+# @type mongo
+# #copy_mode shallow
+#
+# database fluentdb
+# collection stats
+# host mongo.poc-datacollector_datacollector-net
+# port 27017
+#
+# num_retries 60
+# capped
+# capped_size 100m
+#
+#
+#
+# flush_interval 30s
+#
+#
+#
+#
+# @type stdout
+#
+#
+#
+# @type file
+# path /tmp/mylog1
+#
+# timekey 1d
+# timekey_use_utc true
+# timekey_wait 10s
+#
+#
+#
+#
+----
+<1> *localhost* inside of a container will resolve to the network stack of this container
+
+
+
+
+
+
+
+
+
+
+
+
+