gpt4 book ai didi

ibm-mq - 使用 Splunk 解析 IBM MQ v9.1 错误日志

转载 作者:行者123 更新时间:2023-12-03 16:49:16 32 4
gpt4 key购买 nike

我正在使用 splunk 转发器将我的 IBM MQ v9.1 错误日志转发到一个集中式集群,以查看我的分布式消息传递系统中发生的常见错误的趋势。

但是我无法解析所需的字段,因为 MQ 错误日志的格式各不相同,即消息的严重性可能是错误、警告、信息、严重和终止,并且每个字段本身都有不同的字段集并且不一致.

请让我知道是否有人在 splunk 中使用正则表达式来解析 v9.1 的 IBM MQ 错误日志的字段。

我尝试了一些正则表达式模式,但没有按预期解析。

我已经引用了下面的链接,但那是针对 v8 的,v9 的错误日志格式不同,
https://t-rob.net/2017/12/18/parsing-mq-error-logs-in-splunk/

此外,splunk 用户无法访问错误日志。我已经更新了 qm.ini 中的以下节
文件系统:
验证验证=否

还将 chmod -R 755 设置为/var/mqm/qmgrs/qmName/errors 文件夹。

尽管 ERROR 日志的权限在更新时不会改变,但当日志轮换时,权限会被撤销,并且 splunk 用户无法读取日志。

请让我知道如何在不将 splunk 用户添加到 mqm 组的情况下克服这个问题

最佳答案

我建议启用 JSON 日志记录并将这些日志转发到应该能够解析这种格式的 Splunk。

在 IBM MQ v9.0.4 CDS 版本中,IBM 添加了注销到 JSON 格式日志的功能,即使您启用了 JSON 日志记录,MQ 也将始终登录到原始 AMQERR0x.LOG 文件。这包含在所有 MQ 9.1 LTS 和 CSD 版本中。

IBM MQ v9.1 知识中心页面 IBM MQ>Configuring>Changing IBM MQ and queue manager configuration information>Attributes for changing queue manager configuration information>Diagnostic message logging>Diagnostic message service stanzas>Diagnostic message services有关于该主题的信息。您可以将以下内容添加到您的 qm.ini让它将日志信息输出到一个名为 AMQERR0x.json 的 JSON 格式的文件中在标准队列管理器中 errors目录:

DiagnosticMessages:
Service = File
Name = JSONLogs
Format = json
FilePrefix = AMQERR


正如 OP 所指出的,JSON 格式的日志不包含 EXPLANATIONACTION您在正常日志中看到的部分。

在 IBM MQ v9.1 中,您可以使用 mqrc命令将 JSON 格式转换为您在 AMQERR01.LOG 中看到的熟悉的格式.

一个简单的例子如下:
cat <<EOL |mqrc -i json -o text -
{"ibm_messageId":"AMQ9209E","ibm_arithInsert1":0,"ibm_arithInsert2":0,"ibm_commentInsert1":"localhost (127.0.0.1)","ibm_commentInsert2":"TCP/IP","ibm_commentInsert3":"SYSTEM.DEF.SVRCONN","ibm_datetime":"2018-02-22T06:54:53.942Z","ibm_serverName":"QM1","type":"mq_log","host":"0df0ce19c711","loglevel":"ERROR","module":"amqccita.c:4214","ibm_sequence":"1519282493_947814358","ibm_remoteHost":"127.0.0.1","ibm_qmgrId":"QM1_2018-02-13_10.49.57","ibm_processId":4927,"ibm_threadId":4,"ibm_version":"9.1.0.5","ibm_processName":"amqrmppa","ibm_userName":"johndoe","ibm_installationName":"Installation1","ibm_installationDir":"/opt/mqm","message":"AMQ9209E: Connection to host 'localhost (127.0.0.1)' for channel 'SYSTEM.DEF.SVRCONN' closed."}
EOL

输出将是:
02/22/2018 06:54:53 AM - User(johndoe) Program(amqrmppa)
Host(0df0ce19c711) Installation(Installation1)
VRMF(9.1.0.5) QMgr(QM1)
Time(2018-02-22T11:54:53.942Z)
RemoteHost(127.0.0.1)
CommentInsert1(localhost (127.0.0.1))
CommentInsert2(TCP/IP)
CommentInsert3(SYSTEM.DEF.SVRCONN)

AMQ9209E: Connection to host 'localhost (127.0.0.1)' for channel
'SYSTEM.DEF.SVRCONN' closed.

EXPLANATION:
An error occurred receiving data from 'localhost (127.0.0.1)' over TCP/IP. The
connection to the remote host has unexpectedly terminated.

The channel name is 'SYSTEM.DEF.SVRCONN'; in some cases it cannot be determined
and so is shown as '????'.
ACTION:
Tell the systems administrator.
----- amqccita.c : 4214 -------------------------------------------------------

您也可以使用 mqrc仅包含来自 JSON 的错误消息,例如 AMQ9209E ,您可以像这样运行命令:
mqrc AMQ9209E

输出将是:
 536908297  0x20009209  rrcE_CONNECTION_CLOSED
536908297 0x20009209 urcMS_CONN_CLOSED

MESSAGE:
Connection to host '<insert one>' for channel '<insert three>' closed.

EXPLANATION:
An error occurred receiving data from '<insert one>' over <insert two>. The
connection to the remote host has unexpectedly terminated.

The channel name is '<insert three>'; in some cases it cannot be determined and
so is shown as '????'.

ACTION:
Tell the systems administrator.

您可以更进一步并从 JSON 中指定插入内容:

JSON 日志的示例部分:
"ibm_messageId":"AMQ9209E","ibm_arithInsert1":0,"ibm_arithInsert2":0,"ibm_commentInsert1":"localhost (127.0.0.1)","ibm_commentInsert2":"TCP/IP","ibm_commentInsert3":"SYSTEM.DEF.SVRCONN"

在每个 ibm_arthInsert 下面的命令中用程序指定 -n按顺序依次标记 ibm_commentInsert与诉讼 -c旗帜:
mqrc AMQ9209E -n 0 -n 0 -c "localhost (127.0.0.1)" -c "TCP/IP" -c "SYSTEM.DEF.SVRCONN"

输出如下:
 536908297  0x20009209  rrcE_CONNECTION_CLOSED
536908297 0x20009209 urcMS_CONN_CLOSED

MESSAGE:
Connection to host 'localhost (127.0.0.1)' for channel 'SYSTEM.DEF.SVRCONN'
closed.

EXPLANATION:
An error occurred receiving data from 'localhost (127.0.0.1)' over TCP/IP. The
connection to the remote host has unexpectedly terminated.

The channel name is 'SYSTEM.DEF.SVRCONN'; in some cases it cannot be determined
and so is shown as '????'.

ACTION:
Tell the systems administrator.

关于ibm-mq - 使用 Splunk 解析 IBM MQ v9.1 错误日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61128169/

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