简体   繁体   English

Kibana截断数据

[英]Kibana truncating data

I have ELK setup as below :- 我的ELK设置如下:-

Elasticsearch - 6.3 logstash - 6.3 kibana - 6.3 Elasticsearch-6.3日志记录-6.3 kibana-6.3

Data is loaded properly in elasticsearch..but kibana doesn;t show in same way. 数据已正确加载到elasticsearch中。但是kibana却没有以相同的方式显示。 For prodver field , its values is 4.99.6 but in Kibana its shows as 4.99 对于prodver字段,其值为4.99.6,但在Kibana中,其显示为4.99

"hits": [
  {
    "_index": "amp_index-2018-1jul-5jul",
    "_type": "doc",
    "_id": "3167130661",
    "_score": 1.0,
    "_source": {
      "@timestamp": "2018-07-16T15:11:19.726Z",
      "country": "US",
      "browserver": "11.1",
      "prodver": "4.99.6",
      "@version": "1",
      "city": "DENVER",
      "startTime": "2018-07-02T23:29:55.000Z",
      "event": "create",
      "time": "1530574195",
      "region": "CO"
      ...
  }
]

Kibana data in table format:- 表格格式的Kibana数据:-

基巴纳

But when I see same data in JSON format in Kibana it display it correctly. 但是,当我在Kibana中看到JSON格式的相同数据时,它将正确显示。

json格式的kibana数据

Can someone help with this ? 有人可以帮忙吗? I am not able to plot correct graph as its taking as 4.99 and skipping rest if the parts . 我无法绘制正确的图形,因为其取值为4.99,如果没有,则跳过其余部分。

I believe that you can change that precision in the Advanced Settings tab in Management Section. 我相信您可以在“管理”部分的“高级设置”选项卡中更改该精度。 The key could be the format:number:defaultPattern . 密钥可以是format:number:defaultPattern You can learn more about the mask in this link . 您可以在此链接中了解有关面罩的更多信息。

Its a bug in Kibana 6.3. 它是Kibana 6.3中的错误。 I used 5.6 and I don't see any issue there. 我使用5.6,但没有看到任何问题。

I used 6.2 also and there is no issue. 我也用6.2,没有问题。 It seems only issue with 6.3. 6.3似乎只有问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM