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.

Last Month, M-F, 9-5 utilization (MAX,AVG,AVG%)

Report for Last Month, Monday through Friday, hours from 9-5 giving utilization (MAX,AVG,AVG%)

NOTE:  you will want to tweak the custom SQL.  I have a where clauses that selects specific NodeIDs for my environment.  you probably want to tweak that for your enviornment.

an example might be to remove my section:
    (
    n.NodeID in (89,93,94,96,98) OR              --Frame and BU
    n.NodeID in (106,111,112,460,725,726) OR    --tunnels 
    n.NodeID in (102,103,113,115)                --nullmodem
    )
    AND
    (
    i.InterfaceName NOT LIKE '%Ethernet%' AND
    i.InterfaceName NOT LIKE 'Loop%' AND
    i.InterfaceName NOT LIKE 'Serial%.16'
    )
and replace it with something that makes sense for you:
   (
    n.MachineType like 'Cisco [1-7]%'
   )

This would "theoretically" give you all cisco routers where the machine type starts with "Cisco "<followed by router number>  i.e. Cisco 28xx, Cisco 39xx, Cisco 72xx, etc...

use this to test if you want.

select distinct(machinetype) from Nodes where MachineType like 'Cisco [1-7]%'

RH_Traffic_Rates_Avg_and_Peak_last_Month_weekdays_btn_9-5.OrionReport
Parents Reply Children
No Data