用于监视 Webshpere 中的管理控制台属性的 Python 脚本
我需要用 Python 或 JACL 脚本编写脚本,在其中需要监视远程服务器上运行的应用程序的管理控制台并从中提取信息。我需要提取以下信息:
- jdbc
- jms
- web 容器线程
- 默认工作管理器线程。
如果有人能帮助我编写这个脚本,我将不胜感激。 谢谢
I've a requirement for writing a script in Python or JACL script in which I need to monitor and pull the information from Admin Console of the application running on remote server. I require to pull following information:
- jdbc
- jms
- web container threads
- default work manager threads.
If anyone can help me writing this script, it'll be highly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个名为 config.py 的文件并将以下内容粘贴到其中。
然后将此代码复制到名为 config.xml 的文件中。
在 config.xml 文件中定义所有资源后,只需调用以下命令
从命令提示符。确保您有权访问 wsadmin。
这会将您的所有资源创建到名为 MyProfile 的配置文件中。
希望有帮助。
Create a file called config.py and paste the follwing into it.
then copy this code in a file called config.xml
After all of the resources defined in the config.xml file, simply call the following
from a command prompt. Make sure you have access to wsadmin.
This will create all your resources into a profile called MyProfile.
Hope it helps.