Вы находитесь на странице: 1из 2

hi Printing reports from the menu prompt: RNC(IP)> pmr Enter the report number followed by a piping command

62) RNC Used Capacities, Hour by Hour a field in a table Date Time Counter FachDchHsUsers IubThroughput The capacity licensing can be a reason for limiting the traffic processing. Ther e are a number of counters, listed in Table 14, that should be monitored to ensu re that the licenses are sufficient. There are two Capacity License dimensions; Iub throughput and concurrent DCH, HS and FACH users. For each of these two dimensions there are capacity counters . The license dimensions are distinguished by the RncCapacityId, set to IubThroughp ut or FachDchHsUsers . For each of these dimensions there are counters that for the 15 minute ROP period show the average level of utilized capacity, average level when the regulation has kicked in, and number of seconds the regulation has take n place. Table 14 Counters for Capacity Licensing Measure Counters Used The utilized Iub throughput in kbps pmSumCapacity / pmSamplesCapacity for RncCapacityId = IubThroughput The utilized number of FACH/DCH/HS users pmSumCapacity / pmSamplesCapacit y for RncCapacityId = FachDchHsUsers The average Iub throughput in kbps during regulated intervals pmSumCapacityReg ulation / pmSamplesCapacityRegulation for RncCapacityId = IubThroughput The average number of FACH/DCH/HS users during regulated intervals pmSumCap acityRegulation / pmSamplesCapacityRegulation for RncCapacityId = FachDchHsUsers The number of seconds during the ROP period that the regulation has taken place for the Iub throughput pmTotalTimeCapacityRegulated for RncCapacityId = IubThroughput The number of seconds during the ROP period that the regulation has taken place for the number of FACH/DCH/HS users pmTotalTimeCapacityRegulated for RncCapacityId = FachDchHsUsers u can use comand "get RncCapacity" to get the IubThroughput in kbps and FachDchH sUsers(number of FACH/DCH/HS users ) . 1.the counter and Formula of IubThroughput is pmSumCapacity / pmSamplesCapacity for RncCapacityId = IubThroughput. 2.Iub throughput contain voice payload,CS Data payload, PS Data payload.so u can via Iub throughput to know data speed(mpbs) and Speech(Erlang capacity). 3.u can sql the couter of Iub throughput in oss eniq to get busy hour throughput . sql such as: /eniq/sybase_iq/OCS-15_0/bin/isql -Udba -Psql -Sdwhdb -w1000 -s ';' select t1.RNC,t2.DATETIME_ID,t1.RncCapacity,t1.pmSumCapacity,t1.pmSamplesCapacit y,t1.pmCapacity,t1.pmTotalTimeCapacityRegulated,t1.pmSumCapacityRegulation,t1.pm SamplesCapacityRegulation,t1.pmCapacityAllocAtt,t1.pmCapacityAllocRej,t1.pmCapac ityLimit,t1.pmSumSqrCapacity,t2.pmAvgCapacity from (select RNC,rtrim(convert(char(4),datepart(yy,DATETIME_ID))+'-'+rtrim(conve rt(char(2),datepart(mm,DATETIME_ID)))+'-'+ltrim(convert(char(2),datepart(dd,DATE TIME_ID)))+' '+convert(char(8),DATETIME_ID,108)) DATETIME_ID,RncCapacity,pmSumCa pacity,pmSamplesCapacity,ROUND((case when pmSamplesCapacity=0 then 0 else pmSumC

apacity/pmSamplesCapacity end),2) as pmCapacity,pmTotalTimeCapacityRegulated,pmS umCapacityRegulation,pmSamplesCapacityRegulation,pmCapacityAllocAtt,pmCapacityAl locRej,pmCapacityLimit,pmSumSqrCapacity from DC.DC_E_RAN_RNCCAPACITY_RAW where RNC LIKE '%WHRNC%' and datepart(dd,DATETIME_ID) = $day1 and datepart(mm,DA TETIME_ID) = $month1)t1, (select RNC,rtrim(convert(char(4),datepart(yy,DATETIME_ID))+'-'+rtrim(convert(ch ar(2),datepart(mm,DATETIME_ID)))+'-'+ltrim(convert(char(2),datepart(dd,DATETIME_ ID)))+' '+convert(char(8),DATETIME_ID,108)) DATETIME_ID,ROUND(sum((case when pmS amplesCapacity=0 then 0 else pmSumCapacity/pmSamplesCapacity end))/count(*),2) a s pmAvgCapacity from DC.DC_E_RAN_RNCCAPACITY_RAW where RNC LIKE '%JJRNC%' and datepart(dd,DATETIME_ID) = $day1 and datepart(mm,DA TETIME_ID) = $month1 GROUP BY RNC,DATETIME_ID)t2 where (t1.RNC=t2.RNC and t1.DATETIME_ID=t2.DATETIME_ID) go quit !

Вам также может понравиться