Please enter search query.
Search <book_title>...
NetBackup IT Analytics System Administrator Guide
Last Published:
2025-02-03
Product(s):
NetBackup IT Analytics (11.4)
- 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
Changing job status
By default, the Job Summary Report defines the job status as follows:
Table: Table 1 Job Summary Metrics
Metric | Default Value |
---|---|
LONG_JOB_HOURS_DEFAULT | 12 hours |
SLOW_JOB_DEFAULT | <200 kilobytes per second |
STALLED_JOB_DEFAULT | 1800 seconds (30 minutes) |
Although these values are typical, your SLA might require a different values. You can change these metrics for specific host groups or for all host groups.
To change the job status:
Determine the host group's ID.
Log on to the Portal Server as user aptare.
Type the following command:
sqlplus portal/<portal_password>@//localhost:1521/scdb
Insert a row into the ptl_sla_group_policy table. The following example assumes that you want to change the metric to 1MB per second for all host groups.
INSERT INTO ptl_group_policy (group_id, policy_name,display_name, numeric_value) VALUES (300000,'SLOW_JOB_KB_PER_SEC', 'SlowRunning Job', 1000); commit;