You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

REST API Method: GET /rest/ethernetport/{identifier}/historicalstatistics

This action retrieves the historical statistics for a given Ethernet Port in the Sonus SBC 1000/2000 system. The collections are over 1 hour intervals for a period of 1 day, thus giving a maximum of 24 historical records.

The current interval is always the resource with ID 1. There will be a maximum of 25 rows returned for a lookup, where the row with ID 1 is the current interval being collected and the rows with ID 2-25 are the historical collections.

If no ID is specified, a listing of all collections will be returned along with their associated IDs. These identifiers can be used to get the individual resource element values.

URL:

https://134.56.227.163/rest/ethernetport/{identifier}/historicalstatistics

HTTP Method

GET

Requires Authentication

true

Resource Schema

Statistics

Parameter Name Description
rt_ifInUcastPktsDisplays the number of received unicast packets on this port.
rt_ifInBroadcastPkts Displays the number of received broadcast packets on this port.
rt_ifInMulticastPktsDisplays the number of received multicast packets on this port.
rt_ifInOctets Displays the number of received octets on this port.
rt_ifInErrorsDisplays the number of errors detected on this port.
rt_ifInDiscardsDisplays the number of discard errors detected on this port.
rt_ifInUnknwnProtoDisplays the number of Unknown Protocol errors detected on this port.
rt_ifInUndersizedPktsDisplays the number of Undersized Packet errors detected on this port.
rt_ifInOverSizedPktsDisplays the number of Oversized Packet errors detected on this port.
rt_ifInFCSErrorsDisplays the number of discard Frame Check Sequence errors detected on this port.
rt_ifInAlignErrorsDisplays the number of Align errors detected on this port.
rt_ifInFragmentedPktsDisplays the number of Fragmented Packet errors detected on this port.
rt_ifOutUcastPktsDisplays the number of transmitted unicast packets on this port.
rt_ifOutOctets Displays the number of transmitted octets on this port.
rt_ifOutBroadcastPktsDisplays the number of transmitted broadcast packets on this port.
rt_ifOutMulticastPkts Displays the number of transmitted multicast packets on this port.
rt_ifOutErrorsDisplays the number of errors detected on this port.
rt_ifOutDiscardsDisplays the number of discard errors detected on this port.
rt_ifOutLateCollissionsDisplays the number of Late Collision errors detected on this port.
rt_ifOutDeferredTransmissionsDisplays the number of Deferred Transmission errors detected on this port.

Usage Example: (about cURL | requires a session token)

curl --cookie PHPSESSID=ima0r3nkaeg8mo0suln67vg4m7 --cacert 134.56.227.163.crt 
-i https://134.56.227.163/rest/ethernetport/1/historicalstatistics

Response:

<?xml version="1.0"?> 
<root>
   <status>
     <http_code>200</http_code>
   </status>
   <historicalstatistics_list count="3">
       <historicalstatistics_pk id="1:1" href="https://134.56.227.163/rest/ethernetport/1/historicalstatistics/1"/>
       <historicalstatistics_pk id="1:2" href="https://134.56.227.163/rest/ethernetport/1/historicalstatistics/2"/>
       <historicalstatistics_pk id="1:3" href="https://134.56.227.163/rest/ethernetport/1/historicalstatistics/3"/>
   </historicalstatistics_list>
</root>
  • No labels