Objets backed up in last 24 hours

newtotivoli

ADSM.ORG Member
Joined
Feb 24, 2011
Messages
74
Reaction score
0
Points
0
Hi Fellow Member's,

Can anyone post a script which sends an email containing the objects backed up for a node in the last 24 hours?

I am thinking of using postschedcommand to achieve this, But I am not sure whether the mailing capability is enabled on the server or not.

This is a windows machine.

Or would it be better to putup a script on the server end to query actlog?

Any thoughts highly appreiciated.
 
It will also be time consuming to look at the list of files backed up for 30 nodes in the last 24 hours. The information is available though, on the server side, you could use:
select * from backups where backup_date>=current_timestamp-24 hours
 
Back
Top