Can a feature be added to extend the historical retention on the Remote Access VPN Tunnels? Currently I am only able to keep approximately 2 days, and according to support there is no way to extend this timeline (I am assuming it is best effort?).
I am facing the same issue as the person that started this. I was asked to run a report for a user to show remote access from home. and found that only 2 days of data is available. I have done my own work around while waiting on SolarWinds to change this. I have created a report that runs every morning at 6am to show yesterday's remote access users. I get an email each day and this goes to a folder in my outlook. these are small reports but I set an auto delete on outlook retention to remove after 6 months. this was the lowest I could go.
This can be extended by editing the settings table in the database. Below are a couple of queries to set both of those settings to 30 days. The top query is for tunnel statistics and the bottom query is for down tunnels.
UPDATE dbo.Settings SET CurrentValue = 30 WHERE SettingID = 'NPM_Settings_ASA_RemoteAccess_Retain_Days'
UPDATE dbo.Settings SET CurrentValue = 30 WHERE SettingID = 'NPM_Settings_ASA_RemoteAccess_RetainDownTunnels_Days'
NPM_Settings_ASA_RemoteAccess_Retain_Days has a max value of 30 days and NPM_Settings_ASA_RemoteAccess_RetainDownTunnels_Days has a max value of 365 days.