wan_metrics.proto 1.91 KB
Newer Older
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN 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 mec028;


message WanMetrics {

  // 1-octet positive integer representing the current percentage loading of the downlink WAN connection, scaled linearly with 255 representing 100 %, as measured over an interval the duration of which is reported in Load Measurement Duration. In cases where the downlink load is unknown to the AP, the value is set to zero.
  int32 downlink_load = 1;

  // 4-octet positive integer whose value is an estimate of the WAN Backhaul link current downlink speed in kilobits per second.
  int32 downlink_speed = 2;

  // The LMD (Load Measurement Duration) field is a 2-octet positive integer representing the duration over which the Downlink Load and Uplink Load have been measured, in tenths of a second. When the actual load measurement duration is greater than the maximum value, the maximum value will be reported. The value of the LMD field is set to 0 when neither the uplink nor downlink load can be computed. When the uplink and downlink loads are computed over different intervals, the maximum interval is reported.
  int32 lmd = 3;

  // 1-octet positive integer representing the current percentage loading of the uplink WAN connection, scaled linearly with 255 representing 100 %, as measured over an interval, the duration of which is reported in Load Measurement Duration. In cases where the uplink load is unknown to the AP, the value is set to zero.
  int32 uplink_load = 4;

  // 4-octet positive integer whose value is an estimate of the WAN Backhaul link's current uplink speed in kilobits per second.
  int32 uplink_speed = 5;

  // Info about WAN link status, link symmetricity and capacity currently used.
  int32 wan_info = 6;

}