码迷,mamicode.com
首页 > 其他好文 > 详细

logstash + redis

时间:2015-09-18 15:45:23      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

1、安装,启动 redis

0> yum install redis
0> /etc/init.d/redis start
0> netstat -antlp | grep redis
tcp        0      0 127.0.0.1:6379              0.0.0.0:*             LISTEN       2700/redis-server

2、logstash配置文件

2.1 shipper.conf

input {
    file {
        path => ‘/data/logs/nginx/access.log‘
        start_position => beginning
    }
}
output {
    stdout {
        codec => rubydebug
    }
    redis {
        host => "127.0.0.1"
        data_type => "list"
        key => "key_count"
    }
}

2.2 central.conf

input {
    redis {
        host => localhost
        port => 6379
        type => "redis-cluster-input"
        data_type => "list"
        key => "key_count"
    }
}
output {
    elasticsearch {
        host => localhost
        protocol => http
    }
    stdout {
        codec => rubydebug
    }
}


logstash + redis

标签:

原文地址:http://my.oschina.net/moonly/blog/508065

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!