All Classes Namespaces Files Functions Pages
WirelessEndpoint.NetworkInfoMonitor.ResultData Class Reference

Network information over time of the wireless endpoint. More...

Methods

 Description.Get
 Returns a textual description of the object.
 
 Interface.Get
 Returns a list of network interfaces. More...
 
 Interval.Duration.Get
 Gets the configured duration of this results snapshot [NS]. More...
 
 Parent.Get
 Returns the parent object.
 
 Timestamp.Get
 Gets the snapshot timestamp [NS]. More...
 

Class overview

Network information over time of the wireless endpoint.

Contains all useful network information of a wireless endpoint

Since
2.11.0
Example

Create a NetworkInfoMonitor

1 set deviceInfo [ $wirelessEndpoint Device.Info.Get ]
2  set networkInfoMonitor [ $deviceInfo Network.Info.Monitor.Add ]
3  set resultHistory [ $networkInfoMonitor Result.History.get ]
4  foreach result [ $resultHistory Interval.Get ] {
5  $result Timestamp.Get
6  set interfacelist [ $result Interface.Get ]
7 Get SSID/BSSID/RSSI info from the interface
8 
9 }

Definition at line 24959 of file api.tcl.

Method documentation

WirelessEndpoint.NetworkInfoMonitor.ResultData::Interface.Get

Returns a list of network interfaces.

Example
1 $networkInfo Interface.Get

Returns:

[ <WirelessEndpoint.NetworkInterface object> ... ] 

Definition at line 24974 of file api.tcl.

WirelessEndpoint.NetworkInfoMonitor.ResultData::Interval.Duration.Get

Gets the configured duration of this results snapshot [NS].

Since
2.11.0
Example

This example gets interval duration of this result snapshot [NS]

1 $resultData Interval.Duration.Get

Returns:

1000000000 

Definition at line 24986 of file api.tcl.

WirelessEndpoint.NetworkInfoMonitor.ResultData::Timestamp.Get

Gets the snapshot timestamp [NS].

Example

This example gets the snapshot timestamp [NS].

1 $resultData Timestamp.Get

Returns:

1413475070000000000 

Definition at line 25001 of file api.tcl.