PART Ⅰ : 容器云OPENSHIFT
- 安装
- 数据持久化
- 集群管理
- 数据持久化
- 管理
- 网络
- 安全审计
- 工具应用部署
PART Ⅱ:容器云 KUBERNETES
- 基础
- 原理
- 系统应用/网络CNI/TRaefik
- 安装
- 集群管理
- 用户认证ServiceAccount与授权策略RBAC
- K8S应用管理工具Helm
- 问题
- 辅助工具
- Doing:K8S 多集群管理与网络互联
- VM On K8S
PART Ⅲ:持续集成与持续部署
- CICD优化总结
- Jenkins
- Gitlab
- Drone
- Nexus
- 配置
- 使用OrientDB Console在DB层面修改配置
- [设置SMTP邮件服务](https://www.wenjiangs.com/doc/krrcu7ebin9hh
- 仓库管理
- 数据备份恢复
- API
- Jenkins相关插件
- 配置
- SonarQube静态代码扫描分析
- LDAP
- Apollo
- 项目管理工具
- Jira
- Redmine
- Harbor
- Vault
- Alfred
- Web IDE: VSCode
- DolphinScheduler
PART Ⅴ:日志/监控/告警
- Logging
- Kafka/Zookeeper
- Filebeat
- Metrics
- Tracing
- Sentry日志聚合告警平台
PART Ⅵ:基础
- Docker
- Shell脚本
- Mave
- git
- 正则表达式
- SSL/TLS
- Ceph
- 性能压力测试
- PXE+Kickstart
- netboot.xyz
- Tool
- Windows
- MacOS小技巧
- Linux
- Linux排错优化
- iptables详解
- MySQL
- Redis
- 负载均衡与代理
- 代理服务器
- Nginx
- GitBook
- Telegram机器人
- OpenVPN Server
- iDRAC
- vSphere
- Raspberry Pi树莓派
- 钉钉机器人
- Aliyun CLI
- 音、视频处理工具:fffmpeg
- 图片处理工具:Imagemagick
- PDF处理工具:Ghostscript
- Nvidia
- Virtualbox 虚拟机管理
- 阿里云产品使用总结
- RustDesk:可自建远程控制软件
- Poste:自建邮件服务器
- 使用 Jlink构建最小化依赖的 JRE 环境
- Aria2
- Asuswrt-Merlin
- Trap:Shell脚本信号跟踪
- 零散知识汇总
- BarkServer通知
- Synology
PART Ⅶ:数据存储、处理
PART VIII:CODE
- Python学习笔记
- 基础语法
- statik 将静态资源文件打包到二进制文件中
- HTML/CSS 学习笔记
- JavaScript学习笔记
PART X:HACKINTOSH
PART XI:安全
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Nginx日志写入kafka
方案
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论