Data display problem

when i choose the last day, there is no data between 3:00 to 6:00


when is choose the last 12 hours, there is date between 3:00 to 6:00

Hi, this is very particular. Can you click Inspect in the interface and see if there are any discrepancies between the request and responses of the two ranges?

i have try two test,one is from 2019-07-06T16:00:00.000Z to 2019-07-07T15:30:00.000Z, and the another one is from 2019-07-07T04:00:00.000Z to 2019-07-07T15:30:00.000Z,two urls as below:
url of test 1:
https://kibana.zenlogic.net/app/kibana#/discover?_g=(refreshInterval:(pause:!t,value:0),time:(from:'2019-07-06T16:00:00.000Z',to:'2019-07-07T15:30:00.000Z'))&_a=(columns:!(_source),index:'3e6b90a0-9c34-11e9-8d6c-b5e857e0cfda',interval:h,query:(language:kuery,query:''),sort:!('@timestamp',desc))
url of test 2:
https://kibana.zenlogic.net/app/kibana#/discover?_g=(refreshInterval:(pause:!t,value:0),time:(from:'2019-07-07T04:00:00.000Z',to:'2019-07-07T15:30:00.000Z'))&_a=(columns:!(_source),index:'3e6b90a0-9c34-11e9-8d6c-b5e857e0cfda',interval:h,query:(language:kuery,query:''),sort:!('@timestamp',desc))
screenshot of test 1:


screenshot of test 2:

statistics in inspect of test 1:

statistics in inspect of test 2:

request in inspect of test 1:
{
"version": true,
"size": 500,
"sort": [
{
"@timestamp": {
"order": "desc",
"unmapped_type": "boolean"
}
}
],
"_source": {
"excludes":
},
"aggs": {
"2": {
"date_histogram": {
"field": "@timestamp",
"interval": "1h",
"time_zone": "Asia/Shanghai",
"min_doc_count": 1
}
}
},
"stored_fields": [
""
],
"script_fields": {},
"docvalue_fields": [
{
"field": "@timestamp",
"format": "date_time"
},
{
"field": "timestamp",
"format": "date_time"
}
],
"query": {
"bool": {
"must": [
{
"range": {
"@timestamp": {
"format": "strict_date_optional_time",
"gte": "2019-07-06T16:00:00.000Z",
"lte": "2019-07-07T15:30:00.000Z"
}
}
}
],
"filter": [
{
"match_all": {}
}
],
"should": [],
"must_not": []
}
},
"highlight": {
"pre_tags": [
"@kibana-highlighted-field@"
],
"post_tags": [
"@/kibana-highlighted-field@"
],
"fields": {
"
": {}
},
"fragment_size": 2147483647
}
}
request in inspect of test 2:
{
"version": true,
"size": 500,
"sort": [
{
"@timestamp": {
"order": "desc",
"unmapped_type": "boolean"
}
}
],
"_source": {
"excludes":
},
"aggs": {
"2": {
"date_histogram": {
"field": "@timestamp",
"interval": "1h",
"time_zone": "Asia/Shanghai",
"min_doc_count": 1
}
}
},
"stored_fields": [
""
],
"script_fields": {},
"docvalue_fields": [
{
"field": "@timestamp",
"format": "date_time"
},
{
"field": "timestamp",
"format": "date_time"
}
],
"query": {
"bool": {
"must": [
{
"range": {
"@timestamp": {
"format": "strict_date_optional_time",
"gte": "2019-07-07T04:00:00.000Z",
"lte": "2019-07-07T15:30:00.000Z"
}
}
}
],
"filter": [
{
"match_all": {}
}
],
"should": [],
"must_not": []
}
},
"highlight": {
"pre_tags": [
"@kibana-highlighted-field@"
],
"post_tags": [
"@/kibana-highlighted-field@"
],
"fields": {
"
": {}
},
"fragment_size": 2147483647
}
}
response in inspect :
files are to large to paste here so i use vimdiff to show the end data,left is test 1,right is test 2

you can see there is data of 2019-07-07T17:00:00 and 2019-07-07T18:00:00 in test 1, but no data of 2019-07-07T17:00:00 and 2019-07-07T18:00:00 in test 2.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.