APTARE IT Analytics System Administrator Guide
- Preparing for updates
- Backing up and restoring data
- Monitoring APTARE IT Analytics
- Accessing APTARE reports with the REST API
- Defining NetBackup estimated tape capacity
- Automating host group management
- Categorize host operating systems by platform and version
- Bulk load utilities
- Automating NetBackup utilities
- Attribute management
- Importing generic backup data
- Backup job overrides
- Managing host data collection
- System configuration in the portal
- Host discovery: EMC Avamar
- Performance profile schedule customization
- Configuring AD/LDAP
- Configuring single sign-on (SSO) using security assertion markup language (SAML)
- Changing Oracle database user passwords
- Integrating with CyberArk
- Tuning APTARE IT Analytics
- Working with log files
- Portal and data collector log files - reduce logging
- Data collector log file naming conventions
- Portal log files
- Defining report metrics
- SNMP trap alerting
- SSL certificate configuration
- Configure virtual hosts for portal and / or data collection SSL
- Keystore on the portal server
- Portal properties: Format and portal customizations
- Advanced configuration for NetBackup discovery
- Data retention periods for SDK database objects
- Configure multi-tenancy data purging retention periods
- Troubleshooting
Organize clients by attribute
Description | This groupClientsbyAttributes utility enables you to organize clients within a host group, based on client attributes. This utility will create host groups named for each attribute value, underneath a parent host group, as shown in the following example. Example of Organizing Clients by Geographical Location: Create a host group named Geography. This will be the destination group that will be used to organize the clients by location. Then, create an attribute named Geography. For a subset of a host group's clients, set their Geography attribute value to London and for another subset of clients, set their Geography attribute to New York. Use the following groupClientsbyAttributesutility to organize the clients that have a Geography attribute configured. execute server_mgmt_pkg.groupClientsbyAttributes(300000, 302398, 1, StringObjectListType(stringObjectType('Geography'))); Where 300000 is the group ID of the root group, Global; 302398is the ID of the Geography group you just created. Additional References: |
Usage | execute server_mgmt_pkg.groupClientsbyAttributes (<source_Group_ID>, <destination_group_ID>, <cascade_Source_Group>, StringObjectListType (<attribute_List>)); Where: source_Group_ID is the numeric identifier of the host group for which you want to group the clients. See Identifying a host group ID. for the steps for finding a group ID. destination_group_ID is the numeric identifier of the group under which you want to group the clients. cascade_Source_Group is a numeric flag that indicates if you want this utility to process the source host group's sub-groups and organize those clients in the destination group. attribute_Listis a comma-separated list of attribute names, each enclosed in straight single quotes. These names are used to create the sub-groups that organize the clients underneath the source group. |