We have been encountering more frequent issues with the heartbeat being lost between a SpectroServer in the UK, and the MLS Parent Landsdcape in the US.
We need a means of monitoring, via script, utility, whatever will work, to Monitor this heartbeat connection.
This loss of heartbeat is seen under the Administration tab, Landscapes, Monitored Landscapes.
The Heartbeat Received will be several hundred thousand seconds.
Component : Spectrum Core / OneClick Server
The heartbeat can be obtained by running the following REST query. You could then create a script to monitor the output and create an alarm via REST or CLI:
http://OneClickServer:port/spectrum/restful/heartbeat
This is the output:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<heartbeat-response xmlns="http://www.ca.com/spectrum/restful/schema/response" total-landscapes="2">
<heartbeat>Success</heartbeat>
<landscape>
<id>16777216</id>
<name>spectroserver25</name>
<isPrimary>true</isPrimary>
<mls>true</mls>
<spectroserver>Success</spectroserver>
<archmgr>Success</archmgr>
</landscape>
<landscape>
<id>33554432</id>
<name>spectroserver28</name>
<isPrimary>true</isPrimary>
<mls>false</mls>
<spectroserver>Success</spectroserver>
<archmgr>Success</archmgr>
</landscape>
</heartbeat-response>