Browse Source

man poc

master
zeus 3 years ago
parent
commit
333b4495f5
  1. 90
      poc-datacollector/modules/ROOT/pages/doc-dummy_service.adoc

90
poc-datacollector/modules/ROOT/pages/doc-dummy_service.adoc

@ -9,14 +9,12 @@
[source,javascript] [source,javascript]
---- ----
# config
<match debug.*> <match debug.*>
@type stdout @type stdout
</match> </match>
# input log <source> // <1>
<source> @type tail
@type tail // <1>
path /var/log/*.log path /var/log/*.log
path_key tailed_path path_key tailed_path
@ -39,38 +37,36 @@
</parse> </parse>
</source> </source>
# input stats <source> // <1>
<source> @type tail // <2>
@type tail
path /var/log-in/*/* path /var/log-in/*/* // <3>
path_key tailed_path path_key tailed_path
pos_file /tmp/fluentd--1605454014.pos pos_file /tmp/fluentd--1605454014.pos // <4>
pos_file_compaction_interval 10s pos_file_compaction_interval 10s
refresh_interval 30s refresh_interval 30s
skip_refresh_on_startup skip_refresh_on_startup
tag log.node tag log.node // <5>
enable_stat_watcher false enable_stat_watcher false // <6>
enable_watch_timer true enable_watch_timer true // <7>
read_from_head true read_from_head true
follow_inodes true # Without this parameter, file rotation causes log duplication follow_inodes true # Without this parameter, file rotation causes log duplication
<parse> <parse>
@type none @type none // <8>
keep_time_key true keep_time_key true
</parse> </parse>
</source> </source>
# output mongo log* <match log.*> // <9>
<match log.*>
@type copy @type copy
copy_mode deep copy_mode deep // <10>
<store ignore_error> <store ignore_error> // <11>
@type mongo @type mongo
connection_string mongodb://mongo.poc-datacollector_datacollector-net:27017/fluentdb connection_string mongodb://mongo.poc-datacollector_datacollector-net:27017/fluentdb // <12>
#database fluentdb #database fluentdb
collection test collection test
@ -78,8 +74,8 @@
#port 27017 #port 27017
num_retries 60 num_retries 60
capped capped // <13>
capped_size 100m capped_size 100m // <14>
<inject> <inject>
# key name of timestamp # key name of timestamp
time_key time time_key time
@ -87,7 +83,7 @@
<buffer> <buffer>
retry_wait 50s retry_wait 50s
flush_mode immediate flush_mode immediate // <15>
#flush_interval 10s #flush_interval 10s
</buffer> </buffer>
</store> </store>
@ -107,46 +103,22 @@
</store> </store>
</match> </match>
# output mongo log*
#<match stats.*>
# @type copy
# <store>
# @type mongo
# #copy_mode shallow
#
# database fluentdb
# collection stats
# host mongo.poc-datacollector_datacollector-net
# port 27017
#
# num_retries 60
# capped
# capped_size 100m
#
#
# <buffer>
# flush_interval 30s
# </buffer>
# </store>
#
# <store>
# @type stdout
# </store>
#
# <store>
# @type file
# path /tmp/mylog1
# <buffer>
# timekey 1d
# timekey_use_utc true
# timekey_wait 10s
# </buffer>
# </store>
#
#</match>
---- ----
<1> *localhost* inside of a container will resolve to the network stack of this container <1> *localhost* inside of a container will resolve to the network stack of this container
<2> *localhost* inside of a container will resolve to the network stack of this container
<3> *localhost* inside of a container will resolve to the network stack of this container
<4> *localhost* inside of a container will resolve to the network stack of this container
<5> *localhost* inside of a container will resolve to the network stack of this container
<6> *localhost* inside of a container will resolve to the network stack of this container
<7> *localhost* inside of a container will resolve to the network stack of this container
<8> *localhost* inside of a container will resolve to the network stack of this container
<9> *localhost* inside of a container will resolve to the network stack of this container
<10> *localhost* inside of a container will resolve to the network stack of this container
<11> *localhost* inside of a container will resolve to the network stack of this container
<12> *localhost* inside of a container will resolve to the network stack of this container
<13> *localhost* inside of a container will resolve to the network stack of this container
<14> *localhost* inside of a container will resolve to the network stack of this container
<15> *localhost* inside of a container will resolve to the network stack of this container

Loading…
Cancel
Save