gpt4 book ai didi

elasticsearch - ElasticSearch/Kibana时间戳-字段还是_source?

转载 作者:行者123 更新时间:2023-12-03 01:23:17 26 4
gpt4 key购买 nike

我在ES / Kibana中的原始文档看起来像这样:

{
"_index": "fluentd.apache.access.20191202",
"_type": "_doc",
"_id": "8jql724B3OrCHx56JnWb",
"_score": 1,
"_source": {
"serveraddress": "....",
"clientaddress": "...",
"@timestamp": "2019-12-02T11:00:30+0000",
"method": "GET",
"url": "....",
"status": 200,
"bytes": 19820,
"referrer": "....",
"agent": "...",
"@log_name": "apache.access"
},
"fields": {
"@timestamp": [
"2019-12-02T11:00:30.000Z"
]
}
}

为什么 @timestamp的格式不同?
2019-12-02T11:00:30+0000 (UTC timezone, no milliseconds)
2019-12-02T11:00:30.000Z (milliseconds + "Z" for UTC timezone)

在Discover中可以使用时间快速筛选器时,我的索引映射应该看起来像什么?

当前它看起来像这样,并且没有显示时间跨度快速过滤器:
...,
"@timestamp": {
"type": "date",
"format": "yyyy-MM-dd'T'HH:mm:ssZ"
},
...

索引模式:

enter image description here

enter image description here

最佳答案

您需要重新创建索引模式,并确保选择@timestamp字段作为该索引模式的时间字段。

那就是Kibana用于根据时间选择器中选择的时间选择文档的字段。

关于elasticsearch - ElasticSearch/Kibana时间戳-字段还是_source?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59266811/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com