cancel
Showing results for 
Search instead for 
Did you mean: 

Policy run verification

Abhisheknetback
Level 6
Certified

Hi Guys,

I want to verify that all policy ran,

suppose i have 400 monthly backup policy and yesterday monthly backup ran, so, i want to verify that my all monthly policy ran whatever is configured .

 

Please Help .

 

 

Thanh You!!

 

3 REPLIES 3

Nicolai
Moderator
Moderator
Partner    VIP   

That will require a script solutions unless you have OPScenter installed:

What are the data types to be verified - file system only or databases also ?

30 second insperation example:

bpplclients -noheader -allunique | awk '{ print $3 }' |  while read CLIENT

do
 echo -n "Client : $CLIENT":
 bpimagelist -hoursago 24 -client $CLIENT -idonly -sl weekly_full
done

Output example: if no full backup is found within 24 hours a "no entity was found" is returned. If a backup is found the backup id returned.

Client : akira no entity was found
Client : Backup32_2003_vhw4:no entity was found
Client : backuptest1:no entity was found
Client : backuptest2:Time: Sun 31 Aug 2014 06:02:29 PM CE   ID: backuptest2_1409500949   FULL (0)
Time: Sun 31 Aug 2014 06:02:23 PM CE   ID: backuptest2_1409500943   FULL (0)
Time: Sun 31 Aug 2014 06:00:39 PM CE   ID: backuptest2_1409500839   FULL (0)

 

Abhisheknetback
Level 6
Certified

Hi Nicolai,

Thank You for your reply , i will try this .but i have Ops center Anlytics , please guide me how to get this by opscenter if nay idea.

 

 

Nicolai
Moderator
Moderator
Partner    VIP   

Custom SQL query to the opscenter database.

I am no good at SQL, but I have seen some pretty awesome examples.