Fluentd路由的示例分析

这篇文章主要为大家展示了“Fluentd路由的示例分析”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Fluentd路由的示例分析”这篇文章吧。

目前创新互联已为上1000家的企业提供了网站建设、域名、雅安服务器托管成都网站托管、企业网站设计、蔡家坡网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。

  1. 简单场景:单输入->过滤器->输出

    <source>  @type forward</source>
    <filter app.**>  @type record_transformer  <record>    hostname "#{Socket.gethostname}"  </record></filter>
    <match app.**>  @type file  # ...</match>
     

    forward接收tcp消息,record_transformer给日志增加一个hostname字段,输出到file

  2. 两个输入

    <source>  @type forward</source>
    <source>  @type tail  tag system.logs  # ...</source>
    <filter app.**>  @type record_transformer  <record>    hostname "#{Socket.gethostname}"  </record></filter>
    <match {app.**,system.logs}>  @type file  # ...</match>
     

    较上一个示例,增加了一个tail输入,tail产生的事件直接写文件。

  3. 输入->过滤器->带标签的输出

    <source>  @type forward</source>
    <source>  @type dstat  @label @METRICS # dstat events are routed to <label @METRICS>  # ...</source>
    <filter app.**>  @type record_transformer  <record>    # ...  </record></filter>
    <match app.**>  @type file  # ...</match>
    <label @METRICS>  <match **>    @type elasticsearch    # ...  </match></label>
     

    forward产生的事件处理流程不变,dstat直接跳转至@METRICS指定的label,写入elasticsearch

  4. 改写tag重新路由

    <match worker.**>  @type route  remove_tag_prefix worker  add_tag_prefix metrics.event
     <route **>    copy # For fall-through. Without copy, routing is stopped here.  </route>  <route **>    copy    @label @BACKUP  </route></match>
    <match metrics.event.**>  @type stdout</match>
    <label @BACKUP>  <match metrics.event.**>    @type file    path /var/log/fluent/backup  </match></label>
     

    route插件将worker标记的事件重新标记为metrics.event,并重新发送事件给路由引擎,事件进入两个处理分支:输出到stdout;写入file

  5. 根据record内容重新路由

    <source>  @type forward</source>
    # event example: app.logs {"message":"[info]: ..."}<match app.**>  @type rewrite_tag_filter  <rule>    key message    pattern ^\[(\w+)\]    tag $1.${tag}  </rule>  # you can put more <rule></match>
    # send mail when receives alert level logs<match alert.app.**>  @type mail  # ...</match>
    # other logs are stored into file<match *.app.**>  @type file  # ...</match>
     

    forward产生的事件由rewrite_tag_filter处理,提取record中的[log_level],添加到原tag之前,生成新的tag。事件再次进入路由引擎,alert开头的tag标记的事件,通过mail处理;其他类型的事件写入file

  6. 重新路由到指定label

    <source>  @type forward</source>
    <match app.**>  @type copy  <store>    @type forward    # ...  </store>  <store>    @type relabel    @label @NOTIFICATION  </store></match>
    <label @NOTIFICATION>  <filter app.**>    @type grep    regexp1 message ERROR  </filter>
     <match app.**>    @type mail  </match></label>
     
使用relabel插件,直接将事件路由到@NOTIFICATION指定的label处理。relabel不修改事件的tag。  

以上是“Fluentd路由的示例分析”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!

本文名称:Fluentd路由的示例分析
文章网址:https://www.cdcxhl.com/article46/jjddeg.html

成都网站建设公司_创新互联,为您提供企业网站制作网站营销搜索引擎优化Google品牌网站制作网页设计公司

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都网站建设