Category Archives: Logstash

[Logstash] Pattern set in grok.

The original warning message is this. “You are using a deprecated config setting “pattern” set in grok. Deprecated settings will continue to work, but are scheduled for removal from logstash in the future. You should use this instead: match => … Continue reading

Posted in Logstash | Leave a comment

[Logstash] LoadError: no such file to load — i18n

In CentOS 5.5, I want to install the logstash agent to forward logs. Because it was older system and no one would upgrade it, the original java version is 1.6. I always got the error about “LoadError: no such file … Continue reading

Posted in Logstash | 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