I am looking for a script that will allow me to record the Rx and Tx hourly from all active interfaces. I have zero knowledge in this area with Mikrotiks and haven’t been able to find scripts that I feel I can even tweak for my needs. Thanks in advance!
can anyone offer a tweak so this one scripts give me results for the 4 active interfaces I want to monitor?
interface monitor-traffic [/interface find name=ether1l] once do={
:local tx (tx-bits-per-second / 1000)/1000);
:local rx (rx-bits-per-second / 1000)/1000);
:put $tx;
:put $rx;
/tool e-mail send to=youremail@gmail subject=“test” body=“Mbps = $tx Mbps = $rx” tls=yes
}