美文网首页
Prometheus:日志监控

Prometheus:日志监控

作者: SkTj | 来源:发表于2020-01-06 13:51 被阅读0次

1、mtail:从日志中提取指标,发送到时间序列数据库
https://blog.csdn.net/weixin_34255793/article/details/89723969
https://www.cnblogs.com/rongfengliang/p/10117663.html

mtail基于RE2

2、收集apache日志

apache_combined.mtail

Parser for the common apache "NCSA extended/combined" log format

LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-agent}i"

counter apache_http_requests_total by request_method, http_version, request_status
counter apache_http_bytes_total by request_method, http_version, request_status

/^/ +
/(?P<hostname>[0-9A-Za-z.-]+) / + # %h
/(?P<remote_logname>[0-9A-Za-z-]+) / + # %l
/(?P<remote_username>[0-9A-Za-z-]+) / + # %u
/(?P<timestamp>[\d{2}/\w{3}/\d{4}:\d{2}:\d{2}:\d{2} (+|-)\d{4}]) / + # %u
/"(?P<request_method>[A-Z]+) (?P<URI>\S+) (?P<http_version>HTTP/[0-9.]+)" / + # "%r"
/(?P<request_status>\d{3}) / + # %>s
/(?P<response_size>\d+) / + # %b
/"(?P<referer>\S+)" / + # "%{Referer}i"
/"(?P<user_agent>[[:print:]]+)"/ + # "%{User-agent}i"
// { apache_http_requests_total[request_method][http_version][request_status]++
apache_http_bytes_total[request_method][http_version][request_status] +=response_size
}

运行

mtail --progs /etc/mtail --logs '/var/log/apache/*.access'

prometheus配置

image.png
image.png

相关文章

  • Prometheus:日志监控

    1、mtail:从日志中提取指标,发送到时间序列数据库https://blog.csdn.net/weixin_3...

  • k8s-Prometheus

    Prometheus组件与架构 Prometheus监控 Prometheus部署 格式 相关安装 监控自身 指标...

  • Redis的运维手段

    info命令 最基本的监控运维手段。 Prometheus 接入Prometheus监控, Prometheus ...

  • 2018-10-23

    搭建Grafana+Prometheus 监控mysql Grafana+Prometheus 系统监控MySql...

  • 构建Docker容器监控系统

    在对容器进行测试和运维的过程中,经常需要对其进行监控,监控信息的主要来源就是日志。 Prometheus Prom...

  • kubernetes-prometheus

    1 prometheus说明 1.1 监控方案 前提:已安装kubernetes集群监控服务:prometheus...

  • Prometheus监控k8s集群

    Prometheus Prometheus是什么?Prometheus是由SoundCloud开发的开源监控报警系...

  • Prometheus学习系列(二)之Prometheus fir

    欢迎来到Prometheus!Prometheus是一个监控平台,通过在监控目标上的HTTP端点来收集受监控目标的...

  • Prometheus-2·配置及部署

    一、部署Prometheus流程: - 部署监控服务器 安装Prometheus软件 修改prometheus.y...

  • 常见监控告警系统对比分析

    目录 监控告警系统的总体介绍 常见的监控告警系统介绍Prometheus架构Prometheus ServerMe...

网友评论

      本文标题:Prometheus:日志监控

      本文链接:https://www.haomeiwen.com/subject/znphactx.html