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
Based on the general functionality of Logstash and the given documentation, it is expected the http_method field would be interpolated. However, attempting to do so results in an error like the following:
output {
http {
# This setting must be a ["put", "post", "patch", "delete", "get", "head"]
# Expected one of ["put", "post", "patch", "delete", "get", "head"], got ["%{[http][method]}"]
http_method => "%{[http][method]}"
...
}
}
The text was updated successfully, but these errors were encountered:
@jmwilkinson can you please move this issue under https://github.com/logstash-plugins/logstash-output-http and provide more context for the use case (how http method can be dynamic, what shape of events are ingested from where)? That would give us more insights and help us to prioritize.
Based on the general functionality of Logstash and the given documentation, it is expected the
http_method
field would be interpolated. However, attempting to do so results in an error like the following:The text was updated successfully, but these errors were encountered: