Category Archives: Kibana

[Kibana] Time range search

If I want to search information within these seven days. @timestamp:[“now-7d” TO “now”] If I want to search information between 2015-01-01 and 2015-01-31. @timestamp:[“2015-01-01” TO “2015-01-31”] If I want to search information between 2015-02-01 13:00:00 and 2015-02-01 18:00:00. @timestamp:[“2015-02-01T13:00:00” TO … Continue reading

Posted in Kibana | Leave a comment

[Apache] Proxypass

Because the default web port of Elasticsearch is 9200. And I want to change it with 80. Maybe I could use the proxypass function. enable the proxy, and restart apache a2enmod proxy a2enmod proxy_http service apache2 restart add following into … Continue reading

Posted in Apache, Elasticsearch, Kibana | Leave a comment

Logstash + Redis + Nginx + Kibana + ElasticSearch

環境: Ubuntu 14.04 x64 server 安裝Java環境 sudo apt-get install openjdk-7-jdk 下載Logstash壓縮檔 cd /tmp curl -O https://download.elasticsearch.org/logstash/logstash/logstash-1.4.0.tar.gz tar zxvf logstash-1.4.0.tar.gz -C /opt/logstash 基本測試 cd /opt/logstash bin/logstash -e ‘input { stdin { } } output { stdout {} } # 試著打幾個字看看 安裝Elasticsearch … Continue reading

Posted in Elasticsearch, Kibana, Logstash, Redis | Leave a comment