Hi guys, I'm trying to write the config file for logstash to communicate with splunk and I keep getting this error. Not sure what I'm doing wrong and could use some input.
This is my first time using it so here's the config:
input {
beats {
port => 5044
}
}
output {
http {
url => "https://126.0.0.1:8088"
http_method => "post"
format => "json"
headers => {
"Authorization" => "Splunk 81e474c9-2584-4e99-b6d1-d1964daef81x"
}
}
}