Trace

SCPI Commands

FETCh:DATA:MEASurement<MeasInstance>:IPANalysis:TCPanalysis:THRoughput:TRACe
class Trace[source]

Trace commands group definition. 1 total commands, 0 Sub-groups, 1 group commands

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability Indicator’

  • Thrpt_Ul: List[float]: Uplink throughput Range: 0 bit/s to 4E+9 bit/s, Unit: bit/s

  • Thrpt_Dl: List[float]: Downlink throughput Range: 0 bit/s to 4E+9 bit/s, Unit: bit/s

fetch(flow_id: float)FetchStruct[source]
# SCPI: FETCh:DATA:MEASurement<Instance>:IPANalysis:TCPanalysis:THRoughput:TRACe
value: FetchStruct = driver.data.measurement.ipAnalysis.tcpAnalysis.throughput.trace.fetch(flow_id = 1.0)

Queries the throughput traces for a specific connection, selected via its flow ID. The values for the uplink and downlink traces are returned in pairs: <Reliability>, <ThrptUL>1, <ThrptDL>1, <ThrptUL>2, <ThrptDL>2, … The traces are returned from right to left (last to first measurement) .

param flow_id

Selects the connection for which the trace is queried

return

structure: for return value, see the help for FetchStruct structure arguments.