Hello,
I tried out the example:
WebCluster.http = (Web1.http || Web2.http)
AppSrvCluster.procs = (AppSrv1.conn && AppSrv1.procs) || (AppSrv2.conn
&& AppSrv2.procs)
Customer.cluster = WebCluster.http && AppSrvCluster.procs
My code is:
DC.svcs = (MSCT\-DC\-01.conn || MSCT\-DC\-02.conn)
DNS.svcs = (MSCT\-DC\-01.svcs || MSCT\-DC\-02.svcs)
CTCS.svcs = DC.svcs && DNS.svcs
DC is a connectivity check on 2 servers. (Primary and backup domain controllers)
DNS is the DNS services on the same servers.
On my bbhost config page I've configured
127.0.0.1 DC
127.0.0.1 DNS
127.0.0.1 CTCS
To get my combo test being displayed.
For DC.svcs and DNS.svcs the result is OK
(MSCT\-DC\-01.conn||MSCT\-DC\-02.conn) = (1||1) = 1
MSCT-DC-01.conn
MSCT-DC-02.conn
And
(MSCT\-DC\-01.svcs||MSCT\-DC\-02.svcs) = (1||1) = 1
MSCT-DC-01.svcs
MSCT-DC-02.svcs
For CTCS.svcs I get:
DC.svcs&&DNS.svcs = -1&&-1 = 1
&unknown DC.svcs
&unknown DNS.svcs
Why do I get an unknown status????
Best regards
Bart Gillis