Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

3.7. FAQ

3.7.1. 查看 Kibana 資料庫

			
# curl 'http://localhost:9200/_search?pretty'
{
  "took" : 1,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "failed" : 0
  },
  "hits" : {
    "total" : 1,
    "max_score" : 1.0,
    "hits" : [
      {
        "_index" : ".kibana",
        "_type" : "config",
        "_id" : "5.2.2",
        "_score" : 1.0,
        "_source" : {
          "buildNum" : 14723
        }
      }
    ]
  }
}			
			
			

3.7.2. logstash 無法寫入 elasticsearch

elasticsearch 的配置不能省略 9200 連接埠,否則將無法連結elasticsearch

			
  elasticsearch {
    hosts => ["127.0.0.1:9200"]
  }			
			
			

3.7.3. 標準輸出

			
#cd /etc/logstash/conf.d
#vim logstash_server.conf
input {
    redis {
        port => "6379"
        host => "127.0.0.1"
        data_type => "list"
        key => "logstash-redis"
        type => "redis-input"
   }
}
output {
    stdout {
    	codec => rubydebug
    }
}			
			
			

3.7.4. 5.x 升級至 6.x 的變化

5.x type類型如果是date,那麼系統預設使用 ISO8601 格式。 6.x 修復了這個問題。"ctime": "2017-12-18 11:21:57"