Notification when link full

Is there a way to send a message to log or some other notification when an interface or queue reaches a certain speed or maximum speed?

Thanks,

Sure…

/tool traffic-monitor
add name=“tmon1” interface=bridge1 traffic=transmitted trigger=above
threshold=1000000 on-event=“:log message=Traffic_Above_1Mbps”

add name=“tmon2” interface=bridge1 traffic=recieved trigger=above
threshold=1000000 on-event=“:log message=Traffic_Above_1Mbps”

Just change 1000000 to however many bits/sec you want to use as a threshold.

It’s also in the manual as well.

Ah, yes, I’d forgotten about that feature. Thanks, DirectWireless.