使用 rsyslog v8.2.2,我想对多行消息进行分组,例如 MySQL 慢查询日志输出的消息。
每条新消息都以三个连续的行开头,其中第一个字符为“#”,尽管有些消息只有两行在消息开头有一个“#”。(我怀疑由 PHP cli 而不是标准 PHP 触发的查询不带有 # Time:
标记)。例子:
# Time: 140817 0:59:22
# User@Host: root[root] @ localhost []
# Query_time: 5.864315 Lock_time: 0.000033 Rows_sent: 857715 Rows_examined: 857715
SET timestamp=1408237162;
SELECT /*!40001 SQL_NO_CACHE */ * FROM `sales_flat_quote_shipping_rate`;
# Time: 140817 1:00:06
# User@Host: user2[user2] @ localhost []
# Query_time: 4.070595 Lock_time: 0.000068 Rows_sent: 0 Rows_examined: 1536
use db2;
SET timestamp=1408237206;
DELETE FROM `catalog_product_index_price_idx`;
# User@Host: db3[db3] @ localhost []
# Query_time: 3.892674 Lock_time: 0.046493 Rows_sent: 0 Rows_examined: 659
use db3;
SET timestamp=1408237206;
UPDATE user SET cert = 'yes' WHERE site_id < 10;
# Time: 140817 1:00:06
# User@Host: user2[user2] @ localhost []
# Query_time: 4.070595 Lock_time: 0.000068 Rows_sent: 0 Rows_examined: 1536
use db2;
SET timestamp=1408237206;
DELETE FROM `catalog_product_index_price_idx`;
# User@Host: db3[db3] @ localhost []
# Query_time: 3.892674 Lock_time: 0.046493 Rows_sent: 0 Rows_examined: 659
use db3;
SET timestamp=1408237206;
UPDATE user SET cert = 'yes' WHERE site_id < 10;
如何配置 rsyslog 以将它们作为单个消息发送?
rsyslog 可以通过imfile模块将多行日志消息组合成一条消息,但是仅支持以下三种读取模式:
您的案例与其中任何一个都不匹配,因此您不能直接通过 rsyslog 进行分组。但是,您可以解析日志文件并将它们转换为 rsyslog 能够理解的格式。简单的 shell 脚本可以完成这项工作,或者您可以查看功能齐全的日志管理工具,例如logstash。