blob: b089ec9717c691db9023fd0ad669e2a269f82be9 [file] [log] [blame]
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09001syntax = "proto3";
Jian Lic9b4bf12017-06-26 23:50:32 +09002option java_package = "org.onosproject.grpc.net.device.models";
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09003
Jian Lic9b4bf12017-06-26 23:50:32 +09004package net.device;
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09005
Jian Lic9b4bf12017-06-26 23:50:32 +09006message PortStatisticsProto {
Aaron Kruglikov9f95f992017-06-23 14:15:25 +09007 int32 port = 1;
8 int64 packets_received = 2;
9 int64 packets_sent = 3;
10 int64 bytes_received = 4;
11 int64 bytes_sent = 5;
12 int64 packets_rx_dropped = 6;
13 int64 packets_tx_dropped = 7;
14 int64 packets_rx_errors = 8;
15 int64 packets_tx_errors = 9;
16 int64 duration_sec = 10;
17 int64 duration_nano = 11;
18 bool is_zero = 12;
19 // TODO add all other fields
20}