Logging SNR and thruput values
From MikroTik Wiki
This script logs the snr, signal, noise and current thruput to loglevel info. It could be useful for debugging wireless problems, like periodical noises or decreased thruput (what shows noise, interference or other problems)
:local interface "wlan1";
/interface wireless monitor $interface once do={
:local signal $"signal-strength";
:local snr $"signal-to-noise";
:local noise $"noise-floor";
:local thruput $"p-throughput";
:local freq $"frequency";
:log info "SNR: $snr Signal $signal Noise: $noise , thruput: $thruput , freq: $freq MHz";
};