Kibana我的索引模式没有找到结果

时间:2018-01-23 07:31:10

标签: elasticsearch logstash kibana

我在kibana中搜索时插入此模式以查找我的对象

double myDouble = 3.0D;
String i = myDouble == 0.0 ? "0" : myDouble / Math.floor(myDouble) == 1.0 ? String.format("%.0f", myDouble) : String.valueOf(myDouble);
System.out.println(i);

这是我的例外。日志

curl -XPUT 'localhost:9200/exception_index?pretty' -H 'Content-Type: application/json' -d'
{
  "mappings": {
    "siam_exception": { 
      "dynamic": "true", 
      "properties": { 
        "Title":    { "type": "text"  }, 
        "Date&Time":     { "type": "text"  },
        "Tags":     { "type": "text"  },
        "Level":     { "type": "text"  },  
        "Message":     { 
         "dynamic": "true", 
         "properties": { 
           "Root":      { "type": "text" },  
           "ExceptionList":      { "type": "text" } 
          }
        }    
      }
    }
  }
}
'

但是当我搜索时,kibana什么也没找到 即使我省略'“siam_exception”:'从exception.log的第一行没有任何改变 我的问题是什么

0 个答案:

没有答案