Ejemplo n.º 1
0
 def send(self, s):
     if len(s) <= self.chunk_size:
         DatagramHandler.send(self, s)
     else:
         chunks = gelf.split(s, self.chunk_size)
         for chunk in chunks:
             DatagramHandler.send(self, chunk)
Ejemplo n.º 2
0
 def send(self, s):
     if len(s) <= self.chunk_size:
         DatagramHandler.send(self, s)
     else:
         chunks = gelf.split(s, self.chunk_size)
         for chunk in chunks:
             DatagramHandler.send(self, chunk)
Ejemplo n.º 3
0
 def send(self, s):
     if len(s) < self.chunk_size:
         DatagramHandler.send(self, s)
     else:
         for chunk in ChunkedGELF(s, self.chunk_size):
             DatagramHandler.send(self, chunk)
Ejemplo n.º 4
0
 def send(self, s):
     if len(s) < self.chunk_size:
         DatagramHandler.send(self, s)
     else:
         for chunk in ChunkedGELF(s, self.chunk_size):
             DatagramHandler.send(self, chunk)