我正在接收来自 Twitter 的 Web 服务数据,并记录到文件中,然后我需要将该数据发送到 Logstash,以便将这些数据编入 Elasticsearch 的索引。
我正在使用下面的配置,这给 jsonparsefailure 异常为
JSON 解析失败。回退到纯文本 {:error=>#> LogStash::Json::ParserError: Unexpected character (':' (code 58)): 期望 >valid 值(数字、字符串、数组、对象、'true' , '假' 或 '空')
我的 logstash conf 文件如下所示:
input
{
file
{
path => ["/mnt/volume2/ELK_Prashant/at/events.json"]
codec => json
type => json
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
output
{
stdout { codec => rubydebug }
}
events.json 中的数据可以从https://dev.twitter.com/rest/reference/get/search/tweets引用,示例如下:
events.json
[
{ "location": "LA, CA",
"follow_request_sent": null,
"profile_link_color": "0084B4",
"is_translator": false,
"id_str": "137238150",
"entities": {
"url": {
"urls": [
{
"expanded_url": null,
"url": ""
}
]
}
}
}
]