Mastertest depends on sub tests?

All questions related to installations, configurations and maintenance of Advanced Host Monitor (including additional tools such as RMA for Windows, RMA Manager, Web Servie, RCC).
Post Reply
dmertens
Posts: 15
Joined: Sun Jun 23, 2002 6:00 pm

Mastertest depends on sub tests?

Post by dmertens »

Hello,

I want to create this test is this possible with HM?

Network OK
Mail system OK
DB server OK
File Server OK


This test will than linked to allot of subtests like for instance Ping, Eventlog, DNS, SMTP and so on.

Now I want to make the following statuses if 1 or more minor test give a problem I want an orange status for a minor problem, and if one of the more imported subtests fails I want the have a red status.

I want to display this in a HTML page on a status monitor for the helpdesk and network users to inform then over the overall status of the systems and network.

Is this possible and if yes how do I do this the best way?

Thanks in advance

Kind regards

Danny
KS-Soft
Posts: 13012
Joined: Wed Apr 03, 2002 6:00 pm
Location: USA
Contact:

Post by KS-Soft »

Now I want to make the following statuses if 1 or more minor test give a problem I want an orange status for a minor problem, and if one of the more imported subtests fails I want the have a red status.
I want to display this in a HTML page on a status monitor for the helpdesk and network users to inform then over the overall status of the systems and network
Sorry, there is no such thing as "orange" status and important or minor tests.
However you may create custom reports using Custom HTML report profile and your own Java scripts. For example you may use Comment property of the test to set "important/minor test" flag and check the value using Java script.
E.g.

Code: Select all

<SCRIPT type="text/javascript"> 
  if ('%CommentLine1%/'=='important') document.write("<p class=ImportantTest>%TestName%"); 
  else document.write("<p class=MinorTest>%TestName%"); 
--></script>
Regards
Alex
Post Reply