标签:检索 img 技术 last 12px 安装jdk ati 效率 sof
分别解压下载的软件,elasticsearch,logstash,kibana 可以放在一个统一文件夹下
在logstash文件夹的下bin目录创建配置文件logstash.conf ,内容如下:
input {
# 以文件作为来源
file {
# 日志文件路径
path => "F:\test\dp.log"
}
}
filter {
#定义数据的格式,正则解析日志(根据实际需要对日志日志过滤、收集)
grok {
match => { "message" => "%{IPV4:clientIP}|%{GREEDYDATA:request}|%{NUMBER:duration}"}
}
#根据需要对数据的类型转换
mutate { convert => { "duration" => "integer" }}
}
# 定义输出
output {
elasticsearch {
hosts => ["localhost:9200"] #Elasticsearch 默认端口
}
}
logstash.bat -f logstash.conf
elasticsearch.bat即可启动。
启动后浏览器访问 127.0.0.1:9200 ,出现以下的json表示成功。
Kibana启动时从文件kibana.yml读取属性。默认设置配置Kibana运行localhost:5601
。要更改主机或端口号,或者连接到在其他机器上运行的Elasticsearch,需要更新kibana.yml
文件。
kibana.bat启动Kibana。
基于logstash+elasticsearch+kibana的日志收集分析方案(Windows)
标签:检索 img 技术 last 12px 安装jdk ati 效率 sof
原文地址:http://www.cnblogs.com/kingleft/p/7682678.html