Forum Discussion

BorisV's avatar
BorisV
Level 3
10 years ago

API for NetBackup Appliance Report

Hello,

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

Thanks,

Boris

  • 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

     

     

3 Replies

  • 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

     

     

  • 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