Browse Source

Raspberry temperature borders changed to 82 (warning) and 85 (error)

master
Dirk Alders 4 months ago
parent
commit
d68971304d
1 changed files with 4 additions and 5 deletions
  1. 4
    5
      check_raspi_temp

+ 4
- 5
check_raspi_temp View File

1
 #!/bin/python3
1
 #!/bin/python3
2
 #
2
 #
3
-import argparse
4
 import nagios
3
 import nagios
5
 import subprocess
4
 import subprocess
6
 
5
 
7
-GPU_ERROR = 80
8
-GPU_WARNING = 76.5
6
+GPU_ERROR = 85
7
+GPU_WARNING = 82
9
 #
8
 #
10
-CPU_ERROR = 80
11
-CPU_WARNING = 76.5
9
+CPU_ERROR = 85
10
+CPU_WARNING = 82
12
 #
11
 #
13
 
12
 
14
 if __name__ == "__main__":
13
 if __name__ == "__main__":

Loading…
Cancel
Save