an-gpon-pm-onu-local-info.proto 718 Bytes
Newer Older
brunnermarcu's avatar
brunnermarcu committed
syntax = "proto3";
package an_gpon_pm_onu_local_info;

message GponPmOnuLocalInfos {
    message GponPmOnuLocalInfo {
        //The name of ONU.
        string name = 1;

        //The optical power received by the OLT transceiver.The unit is 0.01dBm.
        int32 olt_rx_power = 2;
  
        //The ONU online time.The unit is second.
        uint32 online_duration = 3;

        //The last offline time of ONU.It is timestamp format.
        uint32 last_down_time = 4;

        //The reason for last offline of ONU.
        uint32 last_down_cause = 5;

        //The ONU status.(1-online,2-offline,255-invalid).
        uint32 onu_status = 6;
    }
    repeated GponPmOnuLocalInfo gpon_pm_onu_local_info = 1;
}