cancel
Showing results for 
Search instead for 
Did you mean: 

Aptare - Getting backup clients to show up in reports ?

DPeaco
Moderator
Moderator
   VIP   

I have created host groups with the intent of have a host group for each supporting System Administrator and then create reports for each specific host group and send that report to that specific SysAdmin. Been working well so far, but I added some hosts to a SysAdmin host group and I'm getting backups reported for about half the list. I can't figure out how to get it to report on all the hosts in the list. The OpsCenter report shows the correct host list with current backups but Aptare appears to be skipping a few hosts in the host group list. I can't get it to report on a single host that is not being reported on in the host group report list.

What's the trigger or what should I be looking for that is causing some backup clients to be reported on and other not?

Thanks,
Dennis
12 REPLIES 12

Robert_Geller
Level 4
Employee

Can you verify the hosts that are not showing up actually have backups?  You can verify by just running the report on the client not the host group in question.  

DPeaco
Moderator
Moderator
   VIP   

What's interesting is that backups are running and OpsCenter is showing the hosts and backup activity in the weekly report generated by OpsCenter. It's like I'm getting every other host in Aptare for these specific hosts. It is like I'm getting host A, B, D, F, G, and I but I'm not getting C, E, H. I can see them in the host list inventory in Aptare but I'm not seeing any backup activity on them. To make it even more weird, they are ALL backed up in the same backup policy on our master server - 9.1.0.1. OpsCenter - all is good - Aptare - most everything is all good, but just not these few. Strange.

Thanks,
Dennis

ZenOfAnalytics
Level 3
Employee

What version of the portal are you running, please?  There have been some challenges with client aliases in NBU collection.  I'm wondering if something like that may be occurring.  If you run a Job Summary report, and scope for the specific policy in question - are there any unexpected client names?

DPeaco
Moderator
Moderator
   VIP   

@ZenOfAnalytics 

We are running 10.6.17.01 on a RedHat 8 server. I'll check for strange client names in a job summary report.

Thanks,
Dennis

DPeaco
Moderator
Moderator
   VIP   

@ZenOfAnalytics 

I do see where the Client Name is listed for some of the VM servers and the backup ID matches the client name but I also see where some of the same names have different names in the backupid. What's up with that???

Thanks,
Dennis

Robert_Geller
Level 4
Employee

There could be a bunch of reasons, but what comes to mind is there may be aliases for some clients which could link 2 different clients to 1 host object.  This could happen if IPs are re-used in vmware environment.  There is a setting to toggle this on and off.

Robert_Geller_0-1677703575579.png

 

 

FYI, the 10.6 release of the product is end of life this month.  It would be good to be thinking about upgrading the portal to the latest release.  Doing so will bring a lot of improvements and puts you in a position to have the product keep pace with NBU revisions.  The Aptare name was replaced with NetBackup IT Analytics after version 10.6  The application is still Oracle 19c based, you'll see updates to the Apache, Tomcat, etc. stacks included in the upgrade.  Are you running and NBU clusters?

That should have said "any NBU Clusters?"

 

@DPeaco  - did you ever resolve this?

DPeaco
Moderator
Moderator
   VIP   

Hello @Robert_Geller 

No, I haven't gotten this resolved at this time. I am working towards getting time to work on this again tomorrow.

Thanks,
Dennis

DPeaco
Moderator
Moderator
   VIP   

@Robert_Geller 

I've worked on this a bit today. I have 7 total Windows Template servers being backed up via NBU 9.1.0.1 master server and media servers. In OpsCenter, they all show up in the weekly backup report. In NBUITA, I have all 7 added to a host group for reporting purposes and the report only reflects 5 of the 7.

Thanks,
Dennis

Robert_Geller
Level 4
Employee

@DPeaco   can you create a simple RTD with SQL Template designer and include Host Group and client scope and data range and use this query?  This will tell you if the 7 hosts have jobs.  

 

SELECT s.hostname, j.client_name, COUNT(job_id) job_count, MAX(finish_date)
FROM apt_v_job j, apt_v_server s
WHERE s.server_id IN (${hosts})
AND (j.finish_date > ${startDate} OR creation_date > ${startDate})
AND s.server_id=j.client_id (+)
GROUP BY s.hostname, j.client_name
ORDER BY 1