我一直在使用Logstash中的CSV过滤器将标签分隔文件导入Elasticsearch。获取数据实际上非常容易,但是当我查看Kibana中的数据时,我无法正确地获取字段类型。日期和整数继续以字符串形式出现,因此我无法按日期绘制或对整数执行任何分析函数(求和,平均值等)。
我也无法填充字段的.raw版本。例如,在设备中我有像“HTC One”这样的数据,但是当我在Kibana中做饼图时,它会显示为两个单独的分组“HTC”和“One”。当我尝试绘制device.raw图表时,它会显示为缺少的字段。从我读过的内容来看,似乎Logstash应该自动创建每个字符串字段的原始版本,但这似乎并没有发生。
我一直在筛选文档,谷歌和堆栈,但还没有找到解决方案。任何想法赞赏!感谢。
配置文件:
#logstash.conf
input {
file {
path => "file.txt"
type => "event"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
filter {
csv {
columns => ["userid","date","distance","device"]
separator => " "
}
}
output {
elasticsearch {
action => "index"
host => "localhost"
port => "9200"
protocol => "http"
index => "userid"
workers => 2
template => template.json
}
#stdout {
# codec => rubydebug
#}
}
这是模板文件:
#template.json:
{
"template": "event",
"settings" : {
"number_of_shards" : 1,
"number_of_replicas" : 0,
"index" : {
"query" : { "default_field" : "userid" }
}
},
"mappings": {
"_default_": {
"_all": { "enabled": false },
"_source": { "compress": true },
"dynamic_templates": [
{
"string_template" : {
"match" : "*",
"mapping": { "type": "string", "index": "not_analyzed" },
"match_mapping_type" : "string"
}
}
],
"properties" : {
"date" : { "type" : "date", "format": "yyyy-MM-dd HH:mm:ss"},
"device" : { "type" : "string", "fields": {"raw": {"type": "string","index": "not_analyzed"}}},
"distance" : { "type" : "integer"}
}
}
}
答案 0 :(得分:0)
想出来 - 模板名称是索引。所以“模板”:“事件”行应该是“模板”:“userid”
答案 1 :(得分:0)
我找到了另一种(更简单的)方法来指定字段的类型。您可以使用logstash的mutate过滤器来更改字段的类型。只需在csv过滤器之后将以下过滤器添加到logstash配置
mutate {
convert => [ "fieldname", "integer" ]
}
有关详细信息,请查看logstash docs - mutate convert