Start your 14-day free trial today & Get 20% Off All Annual Managed ELK Plans
No Credit Card Required
Try Logit.io FreeAlready have an account? Sign In
File Upload
Upload a file to logstash
Step 1 - Sample Data
Lets start with some sample data:
echo "Message sent to Logit.io using TCP" >> tmp.log
Step 2 - Send data to TCP input
Sending the log to logstash with openssl over TLS
cat tmp.log | openssl s_client -connect your-logstash-host:your-ssl-port < tmp.log
Sending the log to logstash with netcat without TLS (This is not recommened for production)
cat tmp.log | nc your-logstash-host your-port