Appliance Storage Utilised by Client
Is it possible, via Ops Center or Ops Center Analytics, to determine the amount of storage used on a 5230 appliance by either policy or preferably client ?
If it is not possible (due to de-dup rates etc.) then is it possible to generate the same report ignoring the fact that this is being written to a de-dup appliance and list the number and sizes of images present for a policy / client ?
Thanks,
AJ.
Try this (off the top of my head). it will show the results for the past day. Substitute "hour" with "day" if you want to increase the range (and adjust "24" accordingly)
select
sum (domain_JobArchive.bytesWritten) as "Bytes Written",
sum (domain_JobArchive.preSISSize) as 'Protected Size',
domain_JobArchive.clientName as "Client Name",
from domain_JobArchive,
where DATEDIFF(hour,UTCBigIntToNomTime(domain_JobArchive.endTime), GETDATE()) <= 24
GROUP BY "Client Name" ORDER BY "Bytes Written" DESC