返回介绍

PART Ⅰ : 容器云OPENSHIFT

PART Ⅱ:容器云 KUBERNETES

PART Ⅲ:持续集成与持续部署

PART Ⅴ:日志/监控/告警

PART Ⅵ:基础

PART Ⅶ:数据存储、处理

PART VIII:CODE

PART X:HACKINTOSH

PART XI:安全

Nginx日志写入kafka

发布于 2024-06-08 21:16:46 字数 8305 浏览 0 评论 0 收藏 0

方案

  • Nginx module:编译集成第三方kafka相关模块,可直接将日志发送到kafka
  • Nginx + 第三方应用:结合第三方应用将Nginx日志发送到kafka
    • tail | kafkacat ———> kafka
    • rsyslog ———> kafka
    • Nginx stdout | k8s 第三方operator ———> kafka
openssl_version=1.1.1 && \
nginx_version=1.18.0 && \
mkdir compile-dir && cd compile-dir && \
curl -s -# https://www.openssl.org/source/openssl-$openssl_version.tar.gz | tar zxf - -C ./ && \
curl -s -# https://nginx.org/download/nginx-$nginx_version.tar.gz | tar zxf - -C ./ && \
cd nginx-$nginx_version && \
./configure \
  --prefix=/opt/nginx-1.18.0 \
  --user=nginx \
  --group=nginx \
  --modules-path=/opt/nginx-1.18.0/modules \
  --sbin-path=/opt/nginx-1.18.0/sbin/nginx \
  --error-log-path=/opt/nginx-1.18.0/logs/error.log \
  --http-log-path=/opt/nginx-1.18.0/logs/access.log \
  --conf-path=/opt/nginx-1.18.0/conf/nginx.conf \
  --pid-path=/opt/nginx-1.18.0/nginx.pid \
  --lock-path=/opt/nginx-1.18.0/nginx.lock \
  --with-pcre \
  --with-openssl=../openssl-1.1.1 \
  --with-http_stub_status_module \
  --with-http_realip_module \
  --with-http_addition_module \
  --with-http_sub_module \
  --with-http_dav_module \
  --with-http_flv_module \
  --with-http_mp4_module \
  --with-http_gunzip_module \
  --with-http_gzip_static_module \
  --with-http_random_index_module \
  --with-http_secure_link_module \
  --with-http_stub_status_module \
  --with-http_auth_request_module \
  --with-http_xslt_module=dynamic \
  --with-http_image_filter_module=dynamic \
  --with-http_geoip_module=dynamic \
  --with-http_image_filter_module \
  --with-http_v2_module \
  --with-http_slice_module \
  --with-threads \
  --with-stream \
  --with-stream_ssl_module \
  --with-stream_ssl_preread_module \
  --with-stream_realip_module \
  --with-stream_geoip_module=dynamic \
  --with-mail \
  --with-mail_ssl_module \
  --with-compat && \
make && \
make install

参考:

参考:

1、Prerequisite

  • Nginx >= v1.7.1 (之后才支持 syslog 的方式处理日志)
  • Rsyslog >= v8.7.0 (数据需要通过 Rsyslog 的 omkafka 模块写入到 Kafka,omkafka 在 Rsyslog 的 v8.7.0+ 版本才支持)
  • rsyslog的omkafka模块rsyslog-kafka已安装

2、rsyslog配置

vi /etc/rsyslog.dc/rsyslog_nginx_kafka_cluster.conf

module(load="imudp")
input(type="imudp" port="514")

# nginx access log ==> rsyslog server(local) ==> kafka
module(load="omkafka")

template(name="nginx-rsyslog-kafka" type="string" string="%msg%")

if $inputname == "imudp" then {
    if ($programname == "nginx-rsyslog") then
        action(type="omkafka"
            template="nginx-rsyslog-kafka"
            broker=["localhost:9092"]
            topic="test"
            partitions.auto="on"
            confParam=[
                "socket.keepalive.enable=true"
            ]
        )
}

:rawmsg, contains, "nginx-rsyslog" ~

启动rsyslog

rsyslogd

3、Nginx配置

http {
    log_format json_log '{ "@timestamp": "$time_iso8601", '
                           '"app": "$app", '
                           '"remote_addr": "$remote_addr", '
                           '"referer": "$http_referer", '
                           '"request": "$request", '
                           '"status": $status, '
                           '"bytes": $body_bytes_sent, '
                           '"agent": "$http_user_agent", '
                           '"x_forwarded": "$http_x_forwarded_for", '
                           '"up_addr": "$upstream_addr",'
                           '"up_host": "$upstream_http_host",'
                           '"up_resp_time": "$upstream_response_time",'
                           '"request_time": "$request_time",'
                           '"server_name": "$server_name",'
                           '"x-zz-app-info": "$http_x_zz_app_info"'
                        ' }';
  server {
      listen       80;
      server_name  localhost;
      # set $app test;
      # access_log  /var/log/nginx/host.access.log  json_log;
      access_log syslog:server=localhost,facility=local7,tag=nginx-rsyslog,severity=info main;

      location / {
          root   /usr/share/nginx/html;
          index  index.html index.htm;
      }
  }

4、测试

nginx的日志 ———> rsyslog —————> Kafka

wrk -t10 -c500 -d30s --latency http://127.0.0.1:80

30.1秒发送了38861个请求,QPS大约1291,Transfer/sec: 1.05MB

nginx的日志 ————> 本地文件

wrk -t10 -c500 -d30s --latency http://127.0.0.1:80

30.07秒发送了115156个请求,QPS大约3829,Transfer/sec: 3.10MB

nginx的日志通过网络发送到rsyslog再到Kafka,比落盘形成文件,QPS小了三倍。同时压测完成到所有日志进kafka有15秒延迟

因素

  • 网络消耗
  • 磁盘性能可能导致kafka写入慢

参考

参考:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文