NetBackup IT Analytics System Administrator Guide
- Introduction
- Preparing for updates
- Backing up and restoring data
- Monitoring NetBackup IT Analytics
- Accessing NetBackup IT Analytics 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
- Automate NetBackup utilities
- Scheduling utilities to run automatically
- Attribute management
- Importing generic backup data
- Backup job overrides
- Managing host data collection
- System configuration in the Portal
- Custom parameters
- Performance profile schedule customization
- LDAP and SSO authentication for Portal access
- Change Oracle database user passwords
- Integrate with CyberArk
- Tuning NetBackup 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
- Data retention periods for SDK database objects
- Data aggregation
- Troubleshooting
- Appendix A. Kerberos based proxy user's authentication in Oracle
- Appendix B. Configure TLS-enabled Oracle database on NetBackup IT Analytics Portal and data receiver
- Appendix C. NetBackup IT Analytics for NetBackup on Kubernetes and appliances
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. |