1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Plugin murmur_users: fix type in pattern

The output probably does not contain the misspelled string "Tiemout".
This commit is contained in:
Lars Kruse 2020-03-26 02:14:03 +01:00
parent f776b7e04f
commit 5215545c5b

View file

@ -123,7 +123,7 @@ for($i=count($fp);$i>(count($fp)-$limit);--$i)
if(!array_key_exists($nick,$seen)){
if(
strpos($msg," Connection closed")!==FALSE
|| strpos($msg," Tiemout")!==FALSE
|| strpos($msg," Timeout")!==FALSE
){
$seen[$nick]['online'] = 0;
$offline+=1;