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.

Custom Object Resource - Network Latency and Packet Loss

Hi,

I have created a page with a Custom Object Resource - Network Latency and Packet Loss for each of our MPLS circuits, but it seems the most useful time period - last 24 hours - is missing from the selection.

 

Am I missing something, or is there no way to have this time period?

TIA

Stuart

  • Stuart,

     

    there is now UI option right now to edit time interval for this chat on Custom Object Resource (COR). It's possible though if you don't afraid to modify your DB manually (and make backup of it before the modification).

     

    Here are steps you need to do:

    1. Add needed chart to the COR with Today timeframe and needed Node
    2. Once resource displayed on a page, click on a resource header text to detach the resource
    3. On a page with a detached resource check address string and identify the ResourceID value  (e.g. ResourceID = 259  for localhost/.../DetachResource.aspx
    4. Run this SQL script against your Orion Database and replace [RESOURCEID] with number from step 3
    Update ResourceProperties
    Set PropertyValue='Today'
    where PropertyName = 'Period' and ResourceID = [RESOURCEID]
    Refresh page with the COR and check that chart reflects the change (resource header still will show Today, but data will be correct)
    thanks