cancel
Showing results for 
Search instead for 
Did you mean: 

API for NetBackup Appliance Report

BorisV
Level 3

Hello,

I would like to get the access to the same deduplication  (reports --> deduplication) reports through remote commands or API.

Thanks,

Boris

1 ACCEPTED SOLUTION

Accepted Solutions

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

You can run nbdevconfig -getconfig -stype PureDisk -storage_server "appliance name"

 

The deduplication ratio is actually shown as the dedupe factor (as you'd see on a data domain)

 

So if you get 80% dedupe it would be 5, 90% it would be 10, 99% it would 100.

 

Just so you don't think you got 5% dedupe :p

 

 

View solution in original post

3 REPLIES 3

GulzarShaikhAUS
Level 6
Partner Accredited Certified

Hi Boris,

What platofrm do you want to use to achieve this?

From a Unix or Windows server?

RiaanBadenhorst
Moderator
Moderator
Partner    VIP    Accredited Certified

You can run nbdevconfig -getconfig -stype PureDisk -storage_server "appliance name"

 

The deduplication ratio is actually shown as the dedupe factor (as you'd see on a data domain)

 

So if you get 80% dedupe it would be 5, 90% it would be 10, 99% it would 100.

 

Just so you don't think you got 5% dedupe :p

 

 

Juannillus
Level 4
Partner Accredited

Hello Boris, 

with this formula you can get the %dedup from the dedup ratio or viceversa:

 

x= Ratio Dedup (x:1)

y= % dedup

 

Y = 1-(1/x)*100

x= 100/(100-y)

 

Hope this helps, 

 

Regards, 

Juan