前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >fluentd 的使用

fluentd 的使用

作者头像
崔哥
发布2022-05-25 20:52:52
5520
发布2022-05-25 20:52:52
举报
文章被收录于专栏:崔哥的专栏

td-agent 是基于 fluentd 核心功能开发,td-agent 优先考虑稳定性而不是新功能。1️⃣

Fluentd 有9种类型的插件,其中InputOutput是最常用的

InputOutput一般是成对出现的,如果要测试InputOutput可以选stdout;如果要测试OutputInput可以选in_http。这两个组合是比较直观的

输入

in_forward

代码语言:javascript
复制
#php客户端(fluent/logger)使用此源
<source>
    @type forward
    @id in_forward
    port 24224
    bind 0.0.0.0
</source>

in_http

代码语言:javascript
复制
# http://<ip>:9880/debug.test?json={"hehe":"uu"}
<source>
    @type http
    @id in_http
    port 9880
    body_size_limit 32m
    keepalive_timeout 10s
</source>

in_monitor_agent

代码语言:javascript
复制
# http://<ip>:24220/api/plugins.json
<source>
    @type monitor_agent
    @id in_monitor_agent
    bind 0.0.0.0
    port 24220
</source>

in_tail

代码语言:javascript
复制
<source>
    @type tail
    @id in_tail
    path /var/log/nginx/access.log
    pos_file /var/log/nginx/access.log.pos
    tag nginx.access
    <parse>
        @type nginx
        keep_time_key true
    </parse>
</source>

输出

copy

代码语言:javascript
复制
#输出到目录文件的同时,也输出到标准输出
<match debug.copy>
    @type copy
    <store>
        @type file
        path /var/log/fluent/myapp2
        compress gzip
        <buffer>
            timekey 1d
            timekey_use_utc true
            timekey_wait 10m
        </buffer>
    </store>

    <store>
        @type stdout
    </store>
</match>

elasticsearch

代码语言:javascript
复制
<match nginx.access>
    @type elasticsearch
    @id out_es_nginx
    host elasticsearch
    port 9200
    index_name td.${tag}
    <buffer tag>
        timekey 1m
        timekey           1d
        timekey_wait      10m
        flush_mode        interval
        flush_interval    30s
    </buffer>
</match>

file

代码语言:javascript
复制
<match debug.file>
    @type file
    #输出到此目录
    path /var/log/fluent/myapp
    compress gzip
    <buffer>
        timekey 1d
        timekey_use_utc true
        timekey_wait 10m
    </buffer>
</match>

stdout

代码语言:javascript
复制
#标准输出,如果使用的docker,使用docker logs 可以看到
<match debug.stdout>
    @type stdout
</match>

fluentd-ui

fluentd-ui是一个基于浏览器的fluentd和td-agent管理器2️⃣

我首先尝试的docker部署,即fluentdfluentd-ui是两个独立的容器。最终发现fluentd-ui内包含一个fluentd,无法链接外部的fluentd。这样fluentd-ui的意义就不大了,没有继续研究。。。

代码语言:javascript
复制
git clone git@github.com:fluent/fluentd-ui.git
#构建镜像
docker build -t registry.cn-hangzhou.aliyuncs.com/cuiw/fluentd-ui:20220301 .

参考

1️⃣ https://cloud.tencent.com/developer/article/1622211

2️⃣ https://docs.fluentd.org/deployment/fluentd-ui

https://www.cnblogs.com/fanren224/p/8457181.html

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 输入
    • in_forward
      • in_http
        • in_monitor_agent
          • in_tail
          • 输出
            • copy
              • elasticsearch
                • file
                  • stdout
                  • fluentd-ui
                  • 参考
                  相关产品与服务
                  容器服务
                  腾讯云容器服务(Tencent Kubernetes Engine, TKE)基于原生 kubernetes 提供以容器为核心的、高度可扩展的高性能容器管理服务,覆盖 Serverless、边缘计算、分布式云等多种业务部署场景,业内首创单个集群兼容多种计算节点的容器资源管理模式。同时产品作为云原生 Finops 领先布道者,主导开源项目Crane,全面助力客户实现资源优化、成本控制。
                  领券
                  问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档