解决视图无法查看的问题

#

使用logstash的模板,不然kibana中看不到数据!不确定原因是什么

Kibana中查看视图

Logstash自动生成的template

在es的服务器中查看template,可以看到logstash的template如下:

{
    "order": 0,
    "template": "logstash-*",
    "settings": {
        "index.refresh_interval": "5s"
    },
    "mappings": {
        "_default_": {
            "dynamic_templates": [
                {
                    "string_fields": {
                        "mapping": {
                            "index": "analyzed",
                            "omit_norms": true,
                            "type": "string",
                            "fields": {
                                "raw": {
                                    "index": "not_analyzed",
                                    "ignore_above": 256,
                                    "type": "string"
                                }
                            }
                        },
                        "match_mapping_type": "string",
                        "match": "*"
                    }
                }
            ],
            "properties": {
                "geoip": {
                    "dynamic": true,
                    "path": "full",
                    "properties": {
                        "location": {
                            "type": "geo_point"
                        }
                    },
                    "type": "object"
                },
                "@version": {
                    "index": "not_analyzed",
                    "type": "string"
                },
                "timestamp": {
                    "type": "date",
                    "format": "yyyy-MM-dd HH:mm:ss",
                    "index": "not_analyzed"
                }
            },
            "_all": {
                "enabled": true
            }
        }
    },
    "aliases": {}
}

Published: March 16 2015

blog comments powered by Disqus