This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

VPN Report Edit dbase

How do you change the the default look back days on Remote Access VPN Tunnel Report History in Reports from the default of 2 day to 30. Currently Running SQL 2018.
For the record I'm a novice SQL user......
Thanks

Parents Reply
  • Are you only keeping 2 days of records?

    What do you get if you run this query?

    SELECT MIN([L2Stats].ObservationTimestamp) AS [OldestVpnRecord]
         , MAX([L2Stats].ObservationTimestamp) AS [NewestVpnRecord]
    FROM Orion.VPN.L2LTunnelStatistics AS [L2Stats]
    

    If you don't have SWQL Studio installed, you can run it manually on YourOrionServer.Domain.Local/.../Swis.aspx

    I don't have any VPN in my lab, so I can't test the validity of this query, but it should work.

Children
No Data