mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
Ethernet.Interface.{i}.Stats: read values from ubus ethernet/stats instead of sysfs
This commit is contained in:
parent
b035427a05
commit
7c43ff13a3
2 changed files with 297 additions and 38 deletions
|
|
@ -58,6 +58,16 @@ static int eth_port_sysfs(const struct eth_port_args *args, const char *name, ch
|
|||
return get_net_device_sysfs(args->ifname, name, value);
|
||||
}
|
||||
|
||||
static int eth_port_ubus(const struct eth_port_args *args, const char *name, char **value)
|
||||
{
|
||||
json_object *res = NULL;
|
||||
|
||||
dmubus_call("ethernet", "stats", UBUS_ARGS{{"ifname", args->ifname, String}}, 1, &res);
|
||||
DM_ASSERT(res, *value = "0");
|
||||
*value = dmjson_get_value(res, 1, name);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct uci_section *is_device_section_exist(char *device)
|
||||
{
|
||||
struct uci_section *s = NULL;
|
||||
|
|
@ -756,58 +766,160 @@ static int set_EthernetInterface_EEEEnable(char *refparam, struct dmctx *ctx, vo
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.BytesSent!SYSFS:/sys/class/net/@Name/statistics/tx_bytes*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.BytesSent!UBUS:ethernet/stats/ifname,ifname/tx_bytes*/
|
||||
static int get_EthernetInterfaceStats_BytesSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/tx_bytes", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_bytes", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.BytesReceived!SYSFS:/sys/class/net/@Name/statistics/rx_bytes*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.BytesReceived!UBUS:ethernet/stats/ifname,ifname/rx_bytes*/
|
||||
static int get_EthernetInterfaceStats_BytesReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/rx_bytes", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_bytes", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.PacketsSent!SYSFS:/sys/class/net/@Name/statistics/tx_packets*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.PacketsSent!UBUS:ethernet/stats/ifname,ifname/tx_packets*/
|
||||
static int get_EthernetInterfaceStats_PacketsSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/tx_packets", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.PacketsReceived!SYSFS:/sys/class/net/@Name/statistics/rx_packets*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.PacketsReceived!UBUS:ethernet/stats/ifname,ifname/rx_packets*/
|
||||
static int get_EthernetInterfaceStats_PacketsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/rx_packets", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.ErrorsSent!SYSFS:/sys/class/net/@Name/statistics/tx_errors*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.ErrorsSent!UBUS:ethernet/stats/ifname,ifname/tx_errors*/
|
||||
static int get_EthernetInterfaceStats_ErrorsSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/tx_errors", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_errors", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.ErrorsReceived!SYSFS:/sys/class/net/@Name/statistics/rx_errors*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.ErrorsReceived!UBUS:ethernet/stats/ifname,ifname/rx_errors*/
|
||||
static int get_EthernetInterfaceStats_ErrorsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/rx_errors", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_errors", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.DiscardPacketsSent!SYSFS:/sys/class/net/@Name/statistics/tx_dropped*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.UnicastPacketsSent!UBUS:ethernet/stats/ifname,ifname/tx_unicast_packets*/
|
||||
static int get_EthernetInterfaceStats_UnicastPacketsSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
*value = "0";
|
||||
return 0;
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_unicast_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.UnicastPacketsReceived!UBUS:ethernet/stats/ifname,ifname/rx_unicast_packets*/
|
||||
static int get_EthernetInterfaceStats_UnicastPacketsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
*value = "0";
|
||||
return 0;
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_unicast_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.DiscardPacketsSent!UBUS:ethernet/stats/ifname,ifname/tx_discard_packets*/
|
||||
static int get_EthernetInterfaceStats_DiscardPacketsSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/tx_dropped", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_discard_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.DiscardPacketsReceived!SYSFS:/sys/class/net/@Name/statistics/rx_dropped*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.DiscardPacketsReceived!UBUS:ethernet/stats/ifname,ifname/rx_discard_packets*/
|
||||
static int get_EthernetInterfaceStats_DiscardPacketsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/rx_dropped", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_discard_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.DiscardPacketsReceived!SYSFS:/sys/class/net/@Name/statistics/multicast*/
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.MulticastPacketsSent!UBUS:ethernet/stats/ifname,ifname/tx_multicast_packets*/
|
||||
static int get_EthernetInterfaceStats_MulticastPacketsSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
*value = "0";
|
||||
return 0;
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_multicast_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.MulticastPacketsReceived!UBUS:ethernet/stats/ifname,ifname/rx_multicast_packets*/
|
||||
static int get_EthernetInterfaceStats_MulticastPacketsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
return eth_port_sysfs(data, "statistics/multicast", value);
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_multicast_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.BroadcastPacketsSent!UBUS:ethernet/stats/ifname,ifname/tx_broadcast_packets*/
|
||||
static int get_EthernetInterfaceStats_BroadcastPacketsSent(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
*value = "0";
|
||||
return 0;
|
||||
#else
|
||||
return eth_port_ubus(data, "tx_broadcast_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.BroadcastPacketsReceived!UBUS:ethernet/stats/ifname,ifname/rx_broadcast_packets*/
|
||||
static int get_EthernetInterfaceStats_BroadcastPacketsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
*value = "0";
|
||||
return 0;
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_broadcast_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*#Device.Ethernet.Interface.{i}.Stats.UnknownProtoPacketsReceived!UBUS:ethernet/stats/ifname,ifname/rx_unknown_packets*/
|
||||
static int get_EthernetInterfaceStats_UnknownProtoPacketsReceived(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
{
|
||||
#ifdef GENERIC_OPENWRT
|
||||
*value = "0";
|
||||
return 0;
|
||||
#else
|
||||
return eth_port_ubus(data, "rx_unknown_packets", value);
|
||||
#endif
|
||||
}
|
||||
|
||||
static int get_EthernetLink_Enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
||||
|
|
@ -1683,15 +1795,15 @@ DMLEAF tEthernetInterfaceStatsParams[] = {
|
|||
{"PacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_PacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"ErrorsSent", &DMREAD, DMT_UNINT, get_EthernetInterfaceStats_ErrorsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"ErrorsReceived", &DMREAD, DMT_UNINT, get_EthernetInterfaceStats_ErrorsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
//{"UnicastPacketsSent", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_UnicastPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
//{"UnicastPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_UnicastPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"UnicastPacketsSent", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_UnicastPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"UnicastPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_UnicastPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"DiscardPacketsSent", &DMREAD, DMT_UNINT, get_EthernetInterfaceStats_DiscardPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"DiscardPacketsReceived", &DMREAD, DMT_UNINT, get_EthernetInterfaceStats_DiscardPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
//{"MulticastPacketsSent", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_MulticastPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"MulticastPacketsSent", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_MulticastPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"MulticastPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_MulticastPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
//{"BroadcastPacketsSent", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_BroadcastPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
//{"BroadcastPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_BroadcastPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
//{"UnknownProtoPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_UnknownProtoPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"BroadcastPacketsSent", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_BroadcastPacketsSent, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"BroadcastPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_BroadcastPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{"UnknownProtoPacketsReceived", &DMREAD, DMT_UNLONG, get_EthernetInterfaceStats_UnknownProtoPacketsReceived, NULL, NULL, NULL, BBFDM_BOTH},
|
||||
{0}
|
||||
};
|
||||
|
||||
|
|
|
|||
193
json/tr181.json
193
json/tr181.json
|
|
@ -17738,8 +17738,15 @@
|
|||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/tx_bytes"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_bytes"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17754,8 +17761,15 @@
|
|||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/rx_bytes"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_bytes"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17770,8 +17784,15 @@
|
|||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/tx_packets"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17786,8 +17807,15 @@
|
|||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/rx_packets"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17802,8 +17830,15 @@
|
|||
"datatype": "unsignedInt",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/tx_errors"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_errors"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17818,8 +17853,15 @@
|
|||
"datatype": "unsignedInt",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/rx_errors"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_errors"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17831,7 +17873,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedLong"
|
||||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_unicast_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"UnicastPacketsReceived": {
|
||||
"type": "unsignedLong",
|
||||
|
|
@ -17841,7 +17896,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedLong"
|
||||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_unicast_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"DiscardPacketsSent": {
|
||||
"type": "unsignedInt",
|
||||
|
|
@ -17854,8 +17922,15 @@
|
|||
"datatype": "unsignedInt",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/tx_dropped"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_discard_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17870,8 +17945,15 @@
|
|||
"datatype": "unsignedInt",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "sysfs",
|
||||
"file": "/sys/class/net/@Name/statistics/rx_dropped"
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_discard_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -17883,7 +17965,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedLong"
|
||||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_multicast_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"MulticastPacketsReceived": {
|
||||
"type": "unsignedLong",
|
||||
|
|
@ -17893,7 +17988,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedLong"
|
||||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_multicast_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"BroadcastPacketsSent": {
|
||||
"type": "unsignedLong",
|
||||
|
|
@ -17903,7 +18011,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedLong"
|
||||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "tx_broadcast_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"BroadcastPacketsReceived": {
|
||||
"type": "unsignedLong",
|
||||
|
|
@ -17913,7 +18034,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedLong"
|
||||
"datatype": "unsignedLong",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_broadcast_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"UnknownProtoPacketsReceived": {
|
||||
"type": "unsignedInt",
|
||||
|
|
@ -17923,7 +18057,20 @@
|
|||
"cwmp",
|
||||
"usp"
|
||||
],
|
||||
"datatype": "unsignedInt"
|
||||
"datatype": "unsignedInt",
|
||||
"mapping": [
|
||||
{
|
||||
"type": "ubus",
|
||||
"ubus": {
|
||||
"object": "ethernet",
|
||||
"method": "stats",
|
||||
"args": {
|
||||
"ifname": "ifname"
|
||||
},
|
||||
"key": "rx_unknown_packets"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue