You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the documentation, the output shows that you need to enter "apiKey" => "key" in the opsgenie output section. However, this is incorrect. If "apiKey" is quoted, the configuration fails to load: [2020-04-02T09:21:47,728][DEBUG][logstash.plugins.registry] On demand adding plugin to the registry {:name=>"opsgenie", :type=>"output", :class=>LogStash::Outputs::OpsGenie} [2020-04-02T09:21:47,744][ERROR][logstash.outputs.opsgenie] Unknown setting '"apiKey"' for opsgenie [2020-04-02T09:21:47,775][FATAL][logstash.runner ] The given configuration is invalid. Reason: Unable to configure plugins: (ConfigurationError) Something is wrong with your configuration.
The correct output section is: output{ opsgenie{ apiKey => "key" } }
The text was updated successfully, but these errors were encountered:
In the documentation, the output shows that you need to enter "apiKey" => "key" in the opsgenie output section. However, this is incorrect. If "apiKey" is quoted, the configuration fails to load:
[2020-04-02T09:21:47,728][DEBUG][logstash.plugins.registry] On demand adding plugin to the registry {:name=>"opsgenie", :type=>"output", :class=>LogStash::Outputs::OpsGenie} [2020-04-02T09:21:47,744][ERROR][logstash.outputs.opsgenie] Unknown setting '"apiKey"' for opsgenie [2020-04-02T09:21:47,775][FATAL][logstash.runner ] The given configuration is invalid. Reason: Unable to configure plugins: (ConfigurationError) Something is wrong with your configuration.
The correct output section is:
output{ opsgenie{ apiKey => "key" } }
The text was updated successfully, but these errors were encountered: