fluent-plugin-salesforce выдает ошибочный аргумент (ожидаемый объект или строка uri)
Я пытался соединить salesforce с fluentd, используя fluent-plugin-salesforce, но получаю ошибку:
[ошибка]: #0 неожиданная ошибка error_class=ArgumentError error="неверный аргумент (ожидаемый объект URI или строка URI)"
Мой файл конфигурации:
<source>
@type http
port 9880
</source>
<source>
@type tail
path Documents/trial/trial.log
pos_file /var/log/td-agent/fluent/access1/one.pos
tag myapp.access
read_from_head true
<parse>
@type json
</parse>
</source>
<source>
@type tail
path Documents/trial/trial2.log
pos_file /var/log/td-agent/fluent/access3/two.pos
tag test.bg
read_from_head true
<parse>
@type json
</parse>
</source>
<source>
@type sforce
username *****
password *****
query SELECT AccountId,Description FROM Contact
tag test.bg
polling_interval 20
</source>
<match myapp.access>
@type file
path /var/log/td-agent/fluent/access1
</match>
<match test.bg>
@type file
path /var/log/td-agent/fluent/access3
</match>
Может ли кто-нибудь помочь мне с этим вопросом?