我想将剩余的API数据从logstash发送到Elasticsearch。但我不知道如何将API URL和API密钥添加到logstashconf文件中。
在此处输入图像描述
我在这里分享我的logstash conf文件。
您需要为api密钥设置Authorization
头,如下所示:
input {
http_poller {
urls => {
test1 => {
method => get
url => "https://my-api-url"
headers => {
Accept => "application/json"
Authorization => "Basic ZWxhc3RpY"
}
}
}
}
}