소스 검색

added timeout to example

Volker Tanger 7 달 전
부모
커밋
6ce33375ed
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      moshel.example

+ 2 - 2
moshel.example

@@ -194,8 +194,8 @@ CheckValueUnder AirHumidity "cat $FN" '$0' 100 'Sensor broken?'
 
 
 # retrieve power usage/solar generation from a Shelly PM
-curl -s -u USER:PASSWORD --basic http://IPADDRESS/status | jq '.meters[0].power' > $FN
-CheckValueUnder Solarstrom-Shelly1pm "cat $FN" '{ print $0 }' 630 'Solar above allowed power of 600W'
+curl --max-time 5 -s -u USER:PASSWORD --basic http://IPADDRESS/status | jq '.meters[0].power' > $FN
+CheckValueUnder Solarstrom-Shelly1pm "cat $FN" '{ print $0 }' 6350 'Solar generation above 600W'
 
 rm $FN