gpt4 book ai didi

Websphere 7 SIB 队列 : how to access queue depth wsadmin command?

转载 作者:行者123 更新时间:2023-12-04 06:07:47 25 4
gpt4 key购买 nike

我想使用作为 WebSphere 7 一部分的 WSADMIN 命令来查询系统上队列的状态。

谁能帮我吗?

谢谢

最佳答案

对于任何感兴趣的人,这是 jeff 答案的 jython 版本。

qpoint = 'WebSphere:*,type=SIBQueuePoint'
queues = AdminControl.queryNames(qpoint).split()

for q in queues:
identifier = AdminControl.getAttribute(q, 'identifier')
size = AdminControl.getAttribute(q, 'depth')
print identifier + ' size: ' + size + ' messages'
print AdminControl.getAttributes(q)

关于Websphere 7 SIB 队列 : how to access queue depth wsadmin command?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8153032/

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