1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-02 14:18:21 +00:00

Fix spelling mistakes

This commit is contained in:
Lars Kruse 2020-08-25 15:45:57 +02:00
parent d1a69fe25b
commit 3674882662
15 changed files with 22 additions and 22 deletions

View file

@ -21,8 +21,8 @@ $labels = array(
"free" => "test-debit.free.fr"
);
//Connexion Mbits (30/100)
$connexion = 35;
//Connection Mbits (30/100)
$connection = 35;
// CONFIG ------------------------------------------------------------------
if ($argc > 1 && $argv[1]=='config'){
@ -33,10 +33,10 @@ graph_args --base 1024
graph_vlabel DL (MB/s)
grenouille.label Grenouille (NC)
grenouille.type GAUGE
maximum.label Connexion (max)
maximum.label Connection (max)
maximum.type GAUGE
maximum.colour ff0000
maximum.max ".$connexion."00000
maximum.max ".$connection."00000
";
$order="";
@ -76,7 +76,7 @@ foreach ($mire as $label => $url) {
$output .= "$label.value ".round($cache[$label])."\n";
}
$output .= "maximum.value ".round($connexion * 1024 * 1024 / 10)."\n";
$output .= "maximum.value ".round($connection * 1024 * 1024 / 10)."\n";
echo $output;
// SPEED TEST --------------------------------------------------------------