免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1173 | 回复: 1
打印 上一主题 下一主题

请能帮我看看关于进程监控的脚本,附模板。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-11-01 11:03 |只看该作者 |倒序浏览
我想监控系统中的一个进程,我这里有模板。。但是我不懂SHELL,还请谁帮我看看。

#
#                EXISTENCE AND RESPONSE TESTS
#
# Here, you must add script code to test for the existence or
# responsiveness of your process or processes.  An exit status
# of 1 indicates the test failed, 0 indicates success.
#
# For an Existence Test:
# Check to see if ANY of the processes that are started
# by the program are still running. An exit status of 1 means
# that NONE of the processes are running.  An exit status of 0
# means at least one process is still running.
#
# For a Response Test:
# Check to make sure that ALL of the processes that are started
# by the program are still running.  You should also check to
# see that the application is still responsive by performing
# some operation that produces a response.  An exit status of
# 0 means that all of the processes are running and the program
# is still responsive.  Exit with a status of 1 otherwise.
#
# Use this sample as a model
#
# $succeeded = &doTest();

# if( $succeeded eq "TRUE" {
#    exit(0); # SUCCESS
# }else {
#    exit(1); # FAILURE
# }

# If your test is an Existence Test....
# sub doTest
# {
# Test to see if ANY of the processes that make up this application
# are running.  If any one of them is running, then we do not want
# to declare the process as failed, since it may still be accessing
# important resources.  The response test will test for ALL running,
# and will report the No Response state if they aren't all running.
# Processes that transition to the No Response state can be auto-
# matically restarted by the agent.
#
#  if (&ft:rocExists("rocA" || &ft:rocExists("rocB" || ...{
#     return "TRUE";  # SUCCESS
#   } else {
#     return "FALSE"; # FAILURE
# }  
#  }
# If your test is a Response Test
# sub doTest
# {
# Test to see if ALL of the processes that make up this application
# are running.  Return FALSE unless ALL are running.
# Returning FALSE will cause a transition to the No Response state.
# Optionally test to see that the application responds to requests.
#
#  if (&ft:rocExists("rocA" && &ft:rocExists("rocB" && ...{
#
#     Also perform some test that checks to see that the processes
#     are functioning properly
#     if (&responseCheck() eq "FALSE" {
#        return "FALSE";
#     }
#     return "TRUE";  # SUCCESS
#   }
#}
#
# If your test is a Response Test, you may wish to have a check to
# validate that the application is responding correctly.  You can
# invoke a command and check its output, or use some other means to
# see that your application is actively operating.
# sub responseTest
# {
#   $output = `myAppCli -cmd "doCommand arg1 arg2"`;
#   if ($output =~ /Command Succeeded/) {
#       return "TRUE";
#   }
#   return "FALSE";
# }

论坛徽章:
0
2 [报告]
发表于 2006-11-01 11:04 |只看该作者
忘了说明。比如在系统中我要监控集成 CCC。。那这个脚本应该怎么该。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP