Configure a ping adapter for the vRealize Log Insight cluster to verify the availability of end points.
UI Procedure for vRealize Operations Manager 8.5 or earlier
- Log in to the vRealize Operations interface at https://<vrealize_operations_fqdn> with a user assigned the Administrator role.
- In the left pane, click Administration.
In the left pane, select
.Click Add account.
On the Account types page, click Ping.
On the New account page, configure the settings for the vRealize Log Insight nodes according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and optionally, enter a description.
On the New account page, click Validate connection.
In the Info dialog box, click OK.
Click Add.
On the Other accounts page, verify that the collection status of the Ping adapter is OK.
UI Procedure for vRealize Operations Manager 8.6 or later
- Log in to the vRealize Operations interface at https://<vrealize_operations_fqdn> with a user assigned the Administrator role.
- In the left pane, navigate to .
In the Accounts tab, click Add account.
On the Account types page, click the Ping card.
On the Add account page, configure the settings for the vRealize Log Insight nodes according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and optionally, enter a description.
On the Add account page, click Validate connection.
In the Info dialog box, click OK.
Click Add.
On the Accounts tab, verify that the collection status of the Ping adapter is OK.
PowerShell Procedure
Start Windows PowerShell.
Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.
$sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io" $sddcManagerUser = "administrator@vsphere.local" $sddcManagerPass = "VMw@re1!" $remoteCollectorGroup = "sfo-remote-collectors" $vrliAdapterName = "sfo-vrli01-cluster" $vrliIpList = "192.168.31.10,192.168.31.11,192.168.31.12,192.168.31.13"
Perform the configuration of the vRealize Suite Lifecycle Manager Virtual Machine alerts by running the command in the PowerShell console.
Add-vROPSAdapterPing -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -addressList $vrliIpList -adapterName $vrliAdapterName -collectorGroupName $remoteCollectorGroup