"/fluent-bit/etc/parsers.conf"의 두 판 사이의 차이

60번째 줄: 60번째 줄:


==참고==
==참고==
* https://github.com/fluent/fluent-bit/blob/master/conf/fluent-bit.conf
* https://github.com/fluent/fluent-bit/blob/master/conf/parsers.conf


[[분류: Fluent Bit]]
[[분류: Fluent Bit]]
[[분류: /fluent-bit/etc]]
[[분류: /fluent-bit/etc]]
[[분류: .conf]]
[[분류: .conf]]

2020년 6월 10일 (수) 17:30 판

1 개요

/fluent-bit/etc/parsers.conf
fluent-bit/conf/fluent-bit.conf
[SERVICE]
    # Flush
    # =====
    # Set an interval of seconds before to flush records to a destination
    Flush        5

    # Daemon
    # ======
    # Instruct Fluent Bit to run in foreground or background mode.
    Daemon       Off

    # Log_Level
    # =========
    # Set the verbosity level of the service, values can be:
    #
    # - error
    # - warning
    # - info
    # - debug
    # - trace
    #
    # By default 'info' is set, that means it includes 'error' and 'warning'.
    Log_Level    info

    # Parsers_File
    # ============
    # Specify an optional 'Parsers' configuration file
    Parsers_File parsers.conf
    Plugins_File plugins.conf

    # HTTP Server
    # ===========
    # Enable/Disable the built-in HTTP Server for metrics
    HTTP_Server  Off
    HTTP_Listen  0.0.0.0
    HTTP_Port    2020

[INPUT]
    Name cpu
    Tag  cpu.local
    # Interval Sec
    # ====
    # Read interval (sec) Default: 1
    Interval_Sec 1

[OUTPUT]
    Name  stdout
    Match *

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}