博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自动化运维之日志系统Logstash实践(九)
阅读量:5076 次
发布时间:2019-06-12

本文共 1028 字,大约阅读时间需要 3 分钟。

7.案例logstash写入elasticsearch

数据直接写入elasticsearch中(适合日志数量不大,没有Redis)

 
  1. [root@linux-node3 conf.d]# cat input_file_output_es.conf
  2. input {
  3. #system
  4. syslog {
  5. type => "system_rsyslog"
  6. host => "192.168.90.203"
  7. port => "514"
  8. }
  9. #java
  10. file {
  11. path => "/var/log/elasticsearch/xuliangwei.log"
  12. type => "error_es"
  13. start_position => "beginning"
  14. codec => multiline {
  15. pattern => "^\["
  16. negate => true
  17. what => "previous"
  18. }
  19. }
  20. #nginx
  21. file {
  22. path => "/var/log/nginx/access_json.log"
  23. type => "access_nginx"
  24. codec => "json"
  25. start_position => "beginning"
  26. }
  27. }
  28. output {
  29. #多行文件判断
  30. if [type] == "system_rsyslog" {
  31. elasticsearch {
  32. hosts => ["192.168.90.201:9200","192.168.90.202:9200"]
  33. index => "system_rsyslog_%{+YYYY.MM}"
  34. }
  35. }
  36. if [type] == "error_es" {
  37. elasticsearch {
  38. hosts => ["192.168.90.201:9200","192.168.90.202:9200"]
  39. index => "error_es_%{+YYYY.MM.dd}"
  40. }
  41. }
  42. if [type] == "access_nginx" {
  43. elasticsearch {
  44. hosts => ["192.168.90.201:9200","192.168.90.202:9200"]
  45. index => "access_nginx_%{+YYYY.MM.dd}"
  46. }
  47. }
  48. }

转载于:https://www.cnblogs.com/chenshengqun/p/8011910.html

你可能感兴趣的文章
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>