0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

FluentBitをDockerで入門する

Last updated at Posted at 2024-11-23

内容

  • localのlogファイルをfluentbitで標準ログ出力
  • PARSERを使った ltsvをjson形式へ変換
  • MULTILINE_PARSERを使って stacktrace を連結する

検証

凄い充実している docs
https://docs.fluentbit.io/manual/pipeline/parsers/ltsv

export imagename=customfluentbit:0.1
export containername=fluentbid-01

docker stop $containername
docker rm $containername
docker rmi $imagename
  • DockerImageを作成
docker build .  -t $imagename
  • Dockerを起動する ローカルのtmpディレクトリをマウントする
docker run --name $containername -v ./tmp:/tmp  $imagename
  • それぞれに紐づいたログファイルの中身を編集して結果を確認する
    • すでに記載してあるログが検証ログなので、コピーしてペーストする

備忘録

エラー : pasaerは外部ファイルとして定義せよ

Sections 'multiline_parser' and 'parser' are not valid in the main configuration file. It belongs to 
the 'parsers_file' configuration files.
[2024/11/23 00:55:10] [error] configuration file contains errors, aborting.

Parser

  • Parser設定は 以下を合わせる必要がある (設定しないと適用されない)
    • [PARSER] の Name
    • [INPUT] の parser
  • MultiLineParserの時は Multiline.parser を使う

FluentBitについて

fluentbit は TresureData社が公開した fluentdの派生
fluentd は 多機能で複雑なログ処理とか データセンターやら大規模なサーバシステムでは重宝された
しかし!! Iotシステム や k8s コンテナサービス で 利用したいという要望から 軽量化が求められた
(fluentd は 大分重い)
そこで軽量化 と 機能を絞った fluentbitの爆誕!!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?