Hi, i just deployed an elastic cloud instance on google cloud. I want to use the http input plugin of Logstash to receive sensor data (from "the things network") via webhook requests. I configured the Logstash pipeline on the elastic cloud as follows:
input {
http {
host => "0.0.0.0"
port => "8080"
}
}
filter {
}
output {
elasticsearch {
index => "mytestindex"
}
}
I would like to use the port 8080 for the incoming requests. However, I cannot connect to this port on the elastic cloud as it is probably closed. How can I enable this? And is my intended solution a good one for receiving data from a webhook?
Thanks! Samuel

