Мой беглый не вставляет данные в mongodb - PullRequest
0 голосов
/ 14 февраля 2020

я пытался создать систему метри c панель инструментов

мой план ...

fluent-bit> fluentd> mongod

все в моем google-cloud -platform (вычислительный движок)

fluent-bit> fluentd> stdout <---- очень хорошо работает </p>

, и я использовал fluent-plugin-mon go

/ etc / td-agent / td-agent.conf:

<source>
  @type forward
  bind 0.0.0.0
  port 24224
</source>

<match jhleeeme-gce.bit.system.*>
  @type mongo
  host localhost
  port 27017
  user myUser
  password myPassword

#  <buffer>
#    # flush
#    flush_interval 10s
#  </buffer>
  # db
  database system_metric_db

  # collection
  # Set 'tag_mapped' if you want to use tag mapped mode.
  tag_mapped

  # If tag is "forward.foo.bar", then prefix "forward." is removed.
  # Collection name to insert is "foo.bar".
  remove_tag_prefix jhleeeme-gce.bit.system.

  # Set 'capped' if you want to use capped collection
  capped
  capped_size 50m

 # <inject>
 #   # key name of timestamp
 #   # default: time
 #   time_key time
 # </inject>
  collection untagged

</match>
...