Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

MonitorMIDServer- Global

The MonitorMIDServer script include provides methods to monitor MID Servers using the heartbeat probe to check for MID Servers that are down, sends heartbeat requests, and kills old heartbeat requests.

Use this script include in a server script to monitor MID Servers.

Parent Topic:Server API reference

MonitorMIDServer - MonitorMIDServer()

Creates an instance of MonitorMIDServer.

NameTypeDescription
None  

MonitorMIDServer - killOldRequests()

If there are any heartbeat probe requests that haven't been processed, cancels them so that they don't accumulate when a MID server is down for a while.

NameTypeDescription
None  
TypeDescription
void 
var mmsv = new MonitorMIDServer();
mmsv.killOldRequests();

MonitorMIDServer - markDowners()

Marks any non-responding MID servers as being down, by determining when the most recent heartbeat was sent and finding all non-responding servers.

NameTypeDescription
None  
TypeDescription
void 
var mmsv = new MonitorMIDServer();
mmsv.markDowners();

MonitorMIDServer - monitor()

Performs the functions required for a scheduled MID server monitor cycle, including killing old requests, marking the MID servers that are down, and sending heartbeat requests to all servers.

NameTypeDescription
None  
TypeDescription
void 
var mmsv = new MonitorMIDServer();
mmsv.monitor();

MonitorMIDServer - sendHeartbeatRequests()

Sends heartbeat requests to all MID servers and notes when by updating the server status record.

NameTypeDescription
None  
TypeDescription
void 
var mmsv = new MonitorMIDServer();
mmsv.sendHeartbeatRequests();