gpt4 book ai didi

python - 配置 Rsyslog (Docker->TCP->Rsyslog->ElasticSearch)

转载 作者:行者123 更新时间:2023-12-03 00:15:10 24 4
gpt4 key购买 nike

我是 rsyslog、远程日志记录和 Elasticsearch 的新手。

我配置了一个 python 脚本(从 docker 容器运行)以通过 TCP 将日志记录发送到 $HOST:$PORT。

我已经安装了 rsyslog、模块 mmnormalize 和模块 omelasticsearch。

现在我想了解我的 rsyslog.conf(在主机上)应该如何使用 elasticsearch 收集日志(来自 172.17.0.0/16)。

谢谢!

最佳答案

这是我解决问题的方法:

# /etc/rsyslog.d/docker.rb
version=2
# My sample record
# [Apr 25 12:00]$CONTAINER_HOSTNAME:INFO:Package.Module.Sub-Module:Hello World
#
# Here there is the rule to parse the log records into trees
rule=:[%date:char-to:]%]%hostname:char-to::%:%level:char-to::%:%file:char-to::%:%message:rest%
#
# alternative to set date field in rfc3339 format
# rule=:[%date:date-rfc3339%]%hostname:char-to::%:%level:char-to::%:%file:char-to::%:%message:rest%
# /etc/rsyslog.conf
module(load="mmnormalize")
module(load="omelasticsearch")
module(load="imtcp")

# apply to log records coming from address:port the specified rule
input(type="imtcp"
address="127.0.0.1" # $HOST
port="514" # $PORT
ruleset="docker-rule")

# define the rule in two actions; parsing the log record into a tree with
# root $! ($!son-node!grandson-node...) and adding to the elasticsearch index
# 'docker-logs' the parsed tree, but in a JSON format (specified in a template)
ruleset(name="docker-rule"){
action(type="mmnormalize"
rulebase="/etc/rsyslog.d/docker.rb"
useRawMsg="on"
path="$!")
action(type="omelasticsearch"
template="docker-template"
searchIndex="docker-logs"
bulkmode="on"
action.resumeretrycount="-1")
}

# define the template:
# 'constants' are simply putting into the record JSON delimiters as '{' or ','
# 'properties' are simply putting the values of the parsed tree into fields
# named in the previous constant statements through 'value="..."'
# the result is a JSON record like:
# { "@timestamp":"foo",
# "hostname":"bar",
# "level":"foo",
# "file":"bar",
# "message":"foo"
# }
template(name="docker-template" type="list"){
constant(value="{")
constant(value="\"@timestamp\":")
constant(value="\"")
# because kibana would use '$!date' as string not as date
# that is the only field not from the parsed tree
property(name="timereported" dateFormat="rfc3339")
constant(value="\"")
constant(value=",")
constant(value="\"hostname\":")
constant(value="\"")
property(name="$!hostname")
constant(value="\"")
constant(value=",")
constant(value="\"level\":")
constant(value="\"")
property(name="$!level")
constant(value="\"")
constant(value=",")
constant(value="\"file\":")
constant(value="\"")
property(name="$!file")
constant(value="\"")
constant(value=",")
constant(value="\"message\":")
constant(value="\"")
property(name="$!message")
constant(value="\"")
constant(value="}")
}

接下来安装 kibana 可以“配置索引模式”,只需设置:“索引名称或模式”为“docker-logs”,“时间字段名称”为“@timestamp”

注意日志的来源没有控制(172.17.0.0/16);如果正确解析,发送到 $HOST:$PORT 的每条日志记录都将插入到 elasticsearch 索引中。

关于python - 配置 Rsyslog (Docker->TCP->Rsyslog->ElasticSearch),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36700302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com