I am trying to run logstash plugin and receive no error when I run the input config
input {
salesforce {
client_id => 'OAUTH CLIENT ID FROM YOUR SFDC APP'
client_secret => 'OAUTH CLIENT SECRET FROM YOUR SFDC APP'
username => 'email@example.com'
password => 'super-secret'
security_token => 'SECURITY TOKEN FOR THIS USER'
sfdc_object_name => 'Opportunity'
However I get error when I change Object_name from Opportunity to any other object name eg LoginGeo
[2018-11-27T12:13:30,600][WARN ][logstash.config.source.multilocal] Ignoring the 'pipelines.yml' file because modules or comma$
[2018-11-27T12:13:30,616][INFO ][logstash.runner ] Starting Logstash {"logstash.version"=>"6.5.1"}
[2018-11-27T12:13:32,752][ERROR][logstash.plugins.registry] Tried to load a plugin's code, but failed. {:exception=>#<LoadErro$
[2018-11-27T12:13:32,774][ERROR][logstash.agent ] Failed to execute action {:action=>LogStash::PipelineAction::Creat$
[2018-11-27T12:13:33,095][INFO ][logstash.agent ] Successfully started Logstash API endpoint {:port=>9600}
Any idea what may be the issue?