/* ETSI GS MEC 029 Fixed Access Information API ETSI GS MEC 029 Fixed Access Information API described using OpenAPI. The version of the OpenAPI document: 2.1.1 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec029; import public "models/time_stamp.proto"; message CableLineInfoCmInfoServiceFlowStatsServiceFlowInfo { // For upstream service flows on which AQM is enabled, this attribute counts the number of Packet Data PDUs classified to this service flow dropped due to Active Queue Management drop decisions. int32 aqmDroppedPkts = 1; // For outgoing Service Flows, this attribute counts the number of Packet Data PDUs forwarded to this Service Flow. For incoming upstream CMTS service flows, this attribute counts the number of Packet Data PDUs actually received on the Service Flow identified by the SID for which the packet was scheduled. int32 pkts = 2; // It counts only outgoing packets delayed in order to maintain the Maximum Sustained Traffic Rate. int32 policedDelayPkts = 3; // For upstream service flows, this attribute counts the number of Packet Data PDUs classified to this service flow dropped due to: 1) exceeding the selected Buffer Size for the service flow; or 2) UGS packets dropped due to exceeding the Unsolicited Grant Size with a Request/Transmission policy that requires such packets to be dropped. int32 policedDropPkts = 4; // It represents an identifier assigned to a Service Flow by CMTS within a MAC Domain. int32 serviceFlowId = 5; // It indicates the number of seconds that the service flow has been active. int32 timeActive = 6; TimeStamp timeCreated = 7; }