From 698992bee125f06bff091f12ae7d8568ae68921b Mon Sep 17 00:00:00 2001 From: Alexey Lavrenuke Date: Fri, 25 Mar 2016 19:28:00 +0300 Subject: [PATCH] data types for jmeter log --- yandextank/plugins/JMeter/reader.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/yandextank/plugins/JMeter/reader.py b/yandextank/plugins/JMeter/reader.py index 8e0e9a0..b3883bc 100644 --- a/yandextank/plugins/JMeter/reader.py +++ b/yandextank/plugins/JMeter/reader.py @@ -27,6 +27,7 @@ KNOWN_EXC = { "org.apache.commons.net.MalformedServerReplyException": 71, "org.apache.http.NoHttpResponseException": 32, "java.io.InterruptedIOException": 32, + "javax.net.ssl.SSLHandshakeException": 5, } @@ -72,15 +73,15 @@ jtl_columns = [ ] jtl_types = { 'send_ts': np.int64, - 'interval_real': np.int32, + 'interval_real': np.int64, 'tag': np.str, 'retcode': np.str, 'success': np.bool, - 'size_in': np.int32, - 'grpThreads': np.int32, - 'allThreads': np.int32, - 'latency': np.int32, - 'connect_time': np.int32 + 'size_in': np.int64, + 'grpThreads': np.int64, + 'allThreads': np.int64, + 'latency': np.int64, + 'connect_time': np.int64 }