cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ccsben
Engaged Sweeper
Hi,

I'm wondering if it is possible to automatically log any changes made through "Edit asset". It can be either in the History sectino or comments section.

This is one of the functions available in Solarwinds Web Help Desk as Asset History to keep a log of any manual changes or information entries like Department, location, status, relationship

Thanks,
Ben
1 ACCEPTED SOLUTION
Bruce_B
Lansweeper Alumni
Manual alterations to assets are tracked in tblConfigLog, we've added a report below that will list which assets were altered, on what date, and by whom. Unfortunately which alteration was made is currently not tracked. The oldvalue and newvalue fields in this table are meant to track configuration changes to your Lansweeper installation.

You can add this report to your Lansweeper installation by following these instructions.

Select Top 1000000 tblConfigLog.Description,
tblConfigLog.Date As [Altered on],
tblConfigLog.displayname As [Altered by]
From tblConfigLog
Where tblConfigLog.Description Like 'Altered Asset%'
Order By [Altered on] Desc

View solution in original post

1 REPLY 1
Bruce_B
Lansweeper Alumni
Manual alterations to assets are tracked in tblConfigLog, we've added a report below that will list which assets were altered, on what date, and by whom. Unfortunately which alteration was made is currently not tracked. The oldvalue and newvalue fields in this table are meant to track configuration changes to your Lansweeper installation.

You can add this report to your Lansweeper installation by following these instructions.

Select Top 1000000 tblConfigLog.Description,
tblConfigLog.Date As [Altered on],
tblConfigLog.displayname As [Altered by]
From tblConfigLog
Where tblConfigLog.Description Like 'Altered Asset%'
Order By [Altered on] Desc