how do we get the details as to when the drive backed up and how many bytes

kvkbabu

Active Newcomer
Joined
Jan 21, 2009
Messages
7
Reaction score
0
Points
0
how do we get the details as to when the drive backed up and how many bytes
 
I can get the node level daily backup data, but i am looking for FS level data backed up daily
 
how do we get the details as to when the drive backed up and how many bytes
You can see when it was last backed up, but not how many bytes by using: query filespace f=d or query filespace {NODENAME} f=d if for a specific node. You can also get a shorter output with a SQL command:
SQL:
select node_name,filespace_name,last_backup_complete from filespaces order by last_backup_complete


I can get the node level daily backup data, but i am looking for FS level data backed up daily
That data is not stored on the server at the filespace level, only at the node level.
 
from filespaces table we are not getting the backed up data, i am looking for each FS how data backed up day wise
 
Back
Top