Hi,
hat jemand einen Tipp ob und wie man diese Kollegen hier wegbekommt.
kapacitor_192.168.178.65_60492_MSGCNT
1
kapacitor_192.168.178.65_60492_TIME
2021-01-29 16:34:55
kapacitor_192.168.178.65_60500_MSGCNT
1
kapacitor_192.168.178.65_60500_TIME
2021-01-29 16:35:55
kapacitor_192.168.178.65_60572_MSGCNT
1
kapacitor_192.168.178.65_60572_TIME
2021-01-29 16:36:55
kapacitor_192.168.178.65_60648_MSGCNT
1
kapacitor_192.168.178.65_60648_TIME
2021-01-29 16:37:55
kapacitor_192.168.178.65_60658_MSGCNT
1
kapacitor_192.168.178.65_60658_TIME
2021-01-29 16:38:55
kapacitor_192.168.178.65_60662_MSGCNT
1
kapacitor_192.168.178.65_60662_TIME
2021-01-29 16:39:55
kapacitor_192.168.178.65_60668_MSGCNT
1
kapacitor_192.168.178.65_60668_TIME
2021-01-29 16:40:55
kapacitor_192.168.178.65_60678_MSGCNT
1
kapacitor_192.168.178.65_60678_TIME
2021-01-29 16:41:55
Kann es sein, dass beim Read was fehlt?
sub Kapacitor_Read($) {
my $hash = shift;
my $name = $hash->{NAME};
if ( $hash->{SERVERSOCKET} ) { # Accept and create a child
TcpServer_Accept( $hash, 'Kapacitor' );
return;
}
my $buf;
my $ret = sysread( $hash->{CD}, $buf, 2048 );
# When there is an error in connection return
if ( !defined($ret) or $ret <= 0 ) {
# Log3( $name, 3, "Kapacitor ($name) - Connection closed for $name" );
return;
}
my $found = Dispatch($hash, $buf);
}
Vielen Dank
Tim