InfoScale™ Cluster Server 9.0 Bundled Agents Reference Guide - Linux
- Introducing bundled agents
- Storage agents
- DiskGroup agent
- DiskGroupSnap agent
- Notes for DiskGroupSnap agent
- Sample configurations for DiskGroupSnap agent
- Volume agent
- VolumeSet agent
- Sample configurations for VolumeSet agent
- LVMLogicalVolume agent
- LVMVolumeGroup agent
- LVMVolumeGroup agent notes
- Sample configurations for LVMVolumeGroup agent
- Mount agent
- Sample configurations for Mount agent
- VMwareDisks agent
- SFCache agent
- Network agents
- About the network agents
- IP agent
- NIC agent
- Notes for the NIC agent
- Sample configurations for NIC agent
- IPMultiNIC agent
- MultiNICA agent
- IP Conservation Mode (ICM) for MultiNICA agent
- Performance Mode (PM) for MultiNICA agent
- Sample configurations for MultiNICA agent
- DNS agent
- Agent notes for DNS agent
- About using the VCS DNS agent on UNIX with a secure Windows DNS server
- Sample configurations for DNS agent
- AWSIP agent
- AWSRoute53 agent
- AzureDNSZone agent
- File share agents
- NFS agent
- NFSRestart agent
- Share agent
- About the Samba agents
- NetBios agent
- Service and application agents
- Apache HTTP server agent
- Application agent
- Notes for Application agent
- Sample configurations for Application agent
- AzureAuth agent
- CoordPoint agent
- KVMGuest agent
- Notes for KVMGuest agent
- Sample configurations for KVMGuest environment
- Sample configurations for RHEV environment
- Process agent
- Usage notes for Process agent
- Sample configurations for Process agent
- ProcessOnOnly agent
- RestServer agent
- Infrastructure and support agents
- Testing agents
- Replication agents
- RVG agent
- RVGPrimary agent
- RVGSnapshot
- RVGShared agent
- RVGLogowner agent
- RVGSharedPri agent
- VFRJob agent
- Dependencies for VFRJob agent
- Notes for the VFRJob agent
AppMonHB agent
The AppMonHB agent integrates with the application and with VMware. It monitors the application states, and if the application is unable to come online or to recover from a failure, it uses the heartbeat mechanism to inform VMware of the state. Additionally, if the VM is in an unhealthy state, AppMonHB cannot heartbeat with VMware, which indicates that corrective action is required. VMware may then restart the VM or move it, according to the virtualization configuration in your environment. AppMonHB is designed to wait for a predefined, customizable duration before taking any corrective action in case a fault occurs in any of the critical service groups. If the faulted service groups come online within this duration, no corrective action is taken.
For details on application monitoring on single-node clusters, refer to the Cluster Server Administrator's Guide - Linux.
Table: Required attributes
Required attribute | Description |
---|---|
Provider | Virtualization environment in which the single-node cluster is configured. This attribute is used as a switch to toggle between the supported virtualization environments. Type and dimension: string-scalar Default: VMware Note: As of now, only VMware is supported. |
ServiceGroupName | List of service groups for the agent to track. If a service group from this list faults and is unable to recover, the appropriate corrective action is triggered. Type and dimension: string-vector Default: No value |
WaitBeforeCorrectiveAction | Number of seconds to wait before any pending online or failover attempts are made. Thereafter, the possible corrective actions are evaluated. This duration provides a grace window so that agent does not rush to perform any corrective actions. Type and dimension: integer-scalar Default: 300 |
The resource type for the AppMonHB agent is defined in types.cf
as follows:
type AppMonHB ( static int MonitorInterval = 10 static int NumThreads = 1 static int OfflineMonitorInterval = 10 static str ArgList[] = { ServiceGroupName, WaitBeforeCorrectiveAction, Provider } static str Operations = None str ServiceGroupName[] int WaitBeforeCorrectiveAction = 300 str Provider = VMware )
The following sample from a main.cf
file represents an application monitoring configuration in a single-node cluster.
group VCSAppMon ( SystemList = { hostname = 0 } ) AppMonHB VCSAppMonRes ( ServiceGroupName = { Application_SG } )