To group the clustered Workspace ONE Access agents, you create an agent group in VMware Aria Operations for Logs.

UI Procedure

  1. Log in to VMware Aria Operations for Logs at https://<aria_operations_for_logs_fqdn> as admin.
  2. In the left pane, click Management > Agents.

  3. From the All agents drop-down menu, select Workspace ONE Access (On-prem installation).

  4. Click Copy template.

  5. In the Name text box, enter Workspace ONE Access - Appliance Agent Group and click Copy.

  6. On the Agents page, configure the filter.

    You separate multiple FQDN values by pressing Enter.

    Filter

    Operator

    Value

    Hostname

    matches

    Enter the FQDNs of all nodes of the clustered Workspace ONE Access according to your VMware Cloud Foundation Planning and Preparation Workbook

  7. Click Refresh data and verify that all agents listed in the filter appear in the Agents list.

  8. At the bottom of the page, click Save new group.

  9. Verify that log data is showing on the content pack dashboard.

    1. On the main navigation bar, click Dashboards.

    2. In the left pane, under Content pack dashboards, click the VMware Workspace ONE Access content pack.

PowerShell Procedure

  1. Start PowerShell.

  2. 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 = "[email protected]"
    $sddcManagerPass = "VMw@re1!"
    
    $agentGroupName = "Workspace ONE Access - Appliance Agent Group"
    $agentGroupVmList = "xint-wsa01a.rainpole.io","xint-wsa01b.rainpole.io","xint-wsa01c.rainpole.io"
  3. Perform the configuration by running the command in the PowerShell console.

    Add-vRLIAgentGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -agentGroupType wsa -agentGroupName $agentGroupName -criteria $agentGroupVmList