BryanDavis has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/350638 )

Change subject: Switch logstash transport from UDP to TCP
......................................................................

Switch logstash transport from UDP to TCP

The Foundation network layer is limiting UDP packet size negotiation to
1500 bytes. This is too small for log messages containing Python stack
traces. Using the TCP transport should eliminate this issue.

Bug: T151422
Change-Id: I6b931899f2eac0b6ab356cfd3baba3e6286d2d82
---
M striker/settings.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/labs/striker 
refs/changes/38/350638/1

diff --git a/striker/settings.py b/striker/settings.py
index 8b25254..a8b54a8 100644
--- a/striker/settings.py
+++ b/striker/settings.py
@@ -70,7 +70,7 @@
             'level': 'DEBUG',
          },
         'logstash': {
-            'class': 'logstash.UDPLogstashHandler',
+            'class': 'logstash.TCPLogstashHandler',
             'host': ini.get('logging', 'LOGSTASH_HOST'),
             'port': int(ini.get('logging', 'LOGSTASH_PORT')),
             'version': 1,

-- 
To view, visit https://gerrit.wikimedia.org/r/350638
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6b931899f2eac0b6ab356cfd3baba3e6286d2d82
Gerrit-PatchSet: 1
Gerrit-Project: labs/striker
Gerrit-Branch: master
Gerrit-Owner: BryanDavis <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to