Notes from System Center Battlefield: Monitoring Guest Clusters with SCOM


So what is guest cluster? A guest cluster is when you create cluster inside of virtual machines. In the past we’ve done that trough ISCSI or FC and lately with Shared VHDX in Windows Server 2012 R2. And like any other cluster you will want to monitor these clusters with SCOM but as they are just like any other cluster where is the catch? The catch is from time to time these guest clusters will be live migrated to different hosts and sometimes the cluster can sense these live migrations and raise some alerts which of course will show in SCOM. Not that the live migration of virtual machine is something bad just clusters are very sensitive on network side. There is a resolution to this and it is all described here. Basically you need to execute the following commands to increase the threshold of the cluster heartbeat:

Get-Cluster | fl *subnet*
(Get-Cluster).CrossSubnetThreshold = 20
(Get-Cluster).SameSubnetThreshold = 20
Get-Cluster | fl *subnet*

 

So if you have guest clusters and SCOM definitely change that settings on the guest clusters.

2 thoughts on “Notes from System Center Battlefield: Monitoring Guest Clusters with SCOM

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.