/build/static/layout/Breadcrumb_cap_w.png

Reporting, or alerting on devices that change

Is it possible to have a report that lists all the devices that have changed over the past 24 hours.

What I would be looking for would be hardware changes (memory/disk, etc) and installation of new software.

Regards

0 Comments   [ + ] Show comments

Answers (1)

Posted by: GillySpy 12 years ago
7th Degree Black Belt
0
The changes in inventory are capture in ASSET_HISTORY. So you could write a report to summary, extract, reformat that data. It would be a custom query as it is often non-trivial

For example, this query we wrote for a customer gives you the software items installed in the last 7 days

select A.NAME as Computer,
FoundSoftware,
S.DISPLAY_NAME,
S.DISPLAY_VERSION,
S.ID, AH.TIME asTimestamp, M.USER as 'Last Logged-in User'
from ASSET A
left join(select SUBSTRING_INDEX(DESCRIPTION,'\nSoftware item ',1) FoundSoftware,
ASSET_ID,TIMEfromASSET_HISTORY) AH on AH.ASSET_ID=A.ID
left join SOFTWARE S ON LOCATE(CONCAT(S.DISPLAY_NAME,' ',S.DISPLAY_VERSION),FoundSoftware)>0
left join MACHINE M on M.ID=A.IDwhere A.ASSET_TYPE_ID=5and FoundSoftware like 'Foundsoftware item%'
and AH.TIME >DATE_SUB(now(),INTERVAL 7 DAY)
order by M.NAME, AH.TIME desc,S.DISPLAY_NAME,S.DISPLAY_VERSION
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ