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
Mastertest depends on sub tests?
Sorry, there is no such thing as "orange" status and important or minor tests.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
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>
Alex