Skip to content

Commit ec622d2

Browse files
committed
Update warning and critical limits for courses to 4K and 5K: for organizations that use theses scripts, it is likely that the 1000 and 2000 limits will very quickly be passed
1 parent 6c072bd commit ec622d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

get_registered_courses_munin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
$output .= "graph_vlabel Registered courses\n";
6363
$output .= "graph_scale off\n";
6464
foreach ($connections as $portal => $num) {
65-
$warning = 1000;
66-
$critical = 2000;
65+
$warning = 4000;
66+
$critical = 5000;
6767
$output .= "portal$portal.label Host $portal\n";
6868
// $output .= "portal$portal.type DERIVE\n";
6969
//$output .= "portal$portal.max 500\n";

0 commit comments

Comments
 (0)