During the vRealize Log Insight deployment, SDDC Manager installs the Linux System content pack. To receive log events from the standalone Workspace ONE Access appliance, you create an agent group in vRealize Log Insight.
UI Procedure
- Log in to vRealize Log Insight at https://<vrealize_log_insight_fqdn> with a user assigned the Super admin role.
- On the main navigation bar, click Administration.
In the left pane, click
.From the All agents drop-down menu, for the Linux - Systemd agent, click the Copy template icon.
In the Copy agent group dialog box, enter Photon OS (IAM) - Appliance Agent Group as name and click Copy.
On the Agents page, configure the default filter for the new agent.
From the first drop-down menu, select hostname.
From the second drop-down menu, select matches.
In the text box, enter the Standalone Workspace ONE Access FQDN.
Click Refresh data and verify that the agent listed in the filter appears in the Agents list.
At the bottom of the page, click Save new group.
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!" $agentGroupName = "Photon OS (IAM) - Appliance Agent Group" $vmList = "sfo-wsa01.sfo.rainpole.io"
Perform the configuration by running the command in the PowerShell console.
Add-vRLIAgentGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -agentGroupType photon -agentGroupName $agentGroupName -criteria $vmList