Hello,
Does anyone have email alerts set up for temperature, if so how did you do it? I would prefer to do it from the Mikrotik itself, rather than from a third party tool.
Hello,
Does anyone have email alerts set up for temperature, if so how did you do it? I would prefer to do it from the Mikrotik itself, rather than from a third party tool.
There is script for telegram (notification if temperature is more than 30 degrees). put it in scheduler. the same you can use for e-mail
:global temp1
:set temp1 30
:global temp2 [/system health get temperature]
:if ($temp2 > $temp1) do= {/tool fetch url=“https://api.telegram.org/botXXXXXXXXXX:YYYYYYYYYYYYY/sendMessage?chat_id=ZZZZZZZZ&text=Warning!!! Temperature - $temp2 Degrees” keep-result=no}