By type
2021-09-09 12:12:50 984 INFO [org.glassfish.jersey.client.internal.HttpUrlConnector][pool-2-thread-1] invocationID:{InvocationID} - Restricted headers are not enabled using [sun.net.http.allowRestrictedHeaders] system property (setting only takes effect on connections created after the property has been set/changed). 2021-09-09 12:12:50 986 TRACE [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - ProxySelector Request for http://config-binding-service.onap:10000/service_component/holmes-rule-mgmt 2021-09-09 12:12:50 994 TRACE [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - Proxy used: DIRECT 2021-09-09 12:12:50 994 DEBUG [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - sun.net.www.MessageHeader@1e6f63b45 pairs: {GET /service_component/holmes-rule-mgmt HTTP/1.1: null}{User-Agent: Jersey/2.31 (HttpUrlConnection 11.0.6)}{Host: config-binding-service.onap:10000}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive} 2021-09-09 12:12:51 024 TRACE [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - KeepAlive stream used: http://config-binding-service.onap:10000/service_component/holmes-rule-mgmt 2021-09-09 12:12:51 024 DEBUG [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - sun.net.www.MessageHeader@3dede7875 pairs: {null: HTTP/1.1 200 OK}{x-onap-requestid: 177ba793-b78b-481f-a595-25227d6b313b}{Content-Type: application/json}{Content-Length: 4153}{Date: Thu, 09 Sep 2021 12:12:51 GMT} 2021-09-09 12:12:51 025 INFO [org.onap.holmes.common.config.MicroServiceConfig][pool-2-thread-1] invocationID:{InvocationID} - The query url is: http://config-binding-service.onap:10000/service_component/holmes-rule-mgmt. The corresponding configurations are {"holmes.default.rule.volte.scenario1": "ControlLoop-VOLTE-2179b738-fd36-4843-a71a-a8c24c70c55b$$$package org.onap.holmes.droolsRule;\n\nimport org.onap.holmes.common.dmaap.DmaapService;\nimport org.onap.holmes.common.api.stat.VesAlarm;\nimport org.onap.holmes.common.aai.CorrelationUtil;\nimport org.onap.holmes.common.dmaap.entity.PolicyMsg;\nimport org.onap.holmes.common.dropwizard.ioc.utils.ServiceLocatorHolder;\nimport org.onap.holmes.common.utils.DroolsLog;\n \n\nrule \"Relation_analysis_Rule\"\nsalience 200\nno-loop true\n when\n $root : VesAlarm(alarmIsCleared == 0,\n $sourceId: sourceId, sourceId != null && !sourceId.equals(\"\"),\n\t\t\t$sourceName: sourceName, sourceName != null && !sourceName.equals(\"\"),\n\t\t\t$startEpochMicrosec: startEpochMicrosec,\n eventName in (\"Fault_MultiCloud_VMFailure\"),\n $eventId: eventId)\n $child : VesAlarm( eventId != $eventId, parentId == null,\n CorrelationUtil.getInstance().isTopologicallyRelated(sourceId, $sourceId, $sourceName),\n eventName in (\"Fault_MME_eNodeB out of service alarm\"),\n startEpochMicrosec < $startEpochMicrosec + 60000 && startEpochMicrosec > $startEpochMicrosec - 60000 )\n then\n\t\tDroolsLog.printInfo(\"===========================================================\");\n\t\tDroolsLog.printInfo(\"Relation_analysis_Rule: rootId=\" + $root.getEventId() + \", childId=\" + $child.getEventId());\n\t\t$child.setParentId($root.getEventId());\n\t\tupdate($child);\n\t\t\nend\n\nrule \"root_has_child_handle_Rule\"\nsalience 150\nno-loop true\n\twhen\n\t\t$root : VesAlarm(alarmIsCleared == 0, rootFlag == 0, $eventId: eventId)\n\t\t$child : VesAlarm(eventId != $eventId, parentId == $eventId)\n\tthen\n\t\tDroolsLog.printInfo(\"===========================================================\");\n\t\tDroolsLog.printInfo(\"root_has_child_handle_Rule: rootId=\" + $root.getEventId() + \", childId=\" + $child.getEventId());\n\t\tDmaapService dmaapService = ServiceLocatorHolder.getLocator().getService(DmaapService.class);\n\t\tPolicyMsg policyMsg = dmaapService.getPolicyMsg($root, $child, \"org.onap.holmes.droolsRule\");\n dmaapService.publishPolicyMsg(policyMsg, \"dcae_cl_out\");\n\t\t$root.setRootFlag(1);\n\t\tupdate($root);\nend\n\nrule \"root_no_child_handle_Rule\"\nsalience 100\nno-loop true\n when\n $root : VesAlarm(alarmIsCleared == 0, rootFlag == 0,\n sourceId != null && !sourceId.equals(\"\"),\n\t\t\tsourceName != null && !sourceName.equals(\"\"),\n eventName in (\"Fault_MultiCloud_VMFailure\"))\n then\n\t\tDroolsLog.printInfo(\"===========================================================\");\n\t\tDroolsLog.printInfo(\"root_no_child_handle_Rule: rootId=\" + $root.getEventId());\n\t\tDmaapService dmaapService = ServiceLocatorHolder.getLocator().getService(DmaapService.class);\n\t\tPolicyMsg policyMsg = dmaapService.getPolicyMsg($root, null, \"org.onap.holmes.droolsRule\");\n dmaapService.publishPolicyMsg(policyMsg, \"dcae_cl_out\");\n\t\t$root.setRootFlag(1);\n\t\tupdate($root);\nend\n\nrule \"root_cleared_handle_Rule\"\nsalience 100\nno-loop true\n when\n $root : VesAlarm(alarmIsCleared == 1, rootFlag == 1)\n then\n\t\tDroolsLog.printInfo(\"===========================================================\");\n\t\tDroolsLog.printInfo(\"root_cleared_handle_Rule: rootId=\" + $root.getEventId());\n\t\tDmaapService dmaapService = ServiceLocatorHolder.getLocator().getService(DmaapService.class);\n\t\tPolicyMsg policyMsg = dmaapService.getPolicyMsg($root, null, \"org.onap.holmes.droolsRule\");\n dmaapService.publishPolicyMsg(policyMsg, \"dcae_cl_out\");\n\t\tretract($root);\nend\n\nrule \"child_handle_Rule\"\nsalience 100\nno-loop true\n when\n $child : VesAlarm(alarmIsCleared == 1, rootFlag == 0)\n then\n\t\tDroolsLog.printInfo(\"===========================================================\");\n\t\tDroolsLog.printInfo(\"child_handle_Rule: childId=\" + $child.getEventId());\n\t\tretract($child);\nend", "services_calls": {}, "streams_publishes": {}, "streams_subscribes": {}} 2021-09-09 12:12:51 030 DEBUG [org.apache.http.client.protocol.RequestAddCookies][pool-2-thread-1] invocationID:{InvocationID} - CookieSpec selected: default 2021-09-09 12:12:51 030 DEBUG [org.apache.http.client.protocol.RequestAuthCache][pool-2-thread-1] invocationID:{InvocationID} - Auth cache not set in the context 2021-09-09 12:12:51 030 DEBUG [org.apache.http.impl.conn.PoolingHttpClientConnectionManager][pool-2-thread-1] invocationID:{InvocationID} - Connection request: [route: {s}->https://127.0.0.1:9101][total kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 200] 2021-09-09 12:12:51 031 DEBUG [org.apache.http.impl.conn.PoolingHttpClientConnectionManager][pool-2-thread-1] invocationID:{InvocationID} - Connection leased: [id: 66][route: {s}->https://127.0.0.1:9101][total kept alive: 0; route allocated: 1 of 2; total allocated: 1 of 200] 2021-09-09 12:12:51 031 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Opening connection {s}->https://127.0.0.1:9101 2021-09-09 12:12:51 031 DEBUG [org.apache.http.impl.conn.DefaultHttpClientConnectionOperator][pool-2-thread-1] invocationID:{InvocationID} - Connecting to /127.0.0.1:9101 2021-09-09 12:12:51 031 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Connecting socket to /127.0.0.1:9101 with timeout 30000 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@39a672eb[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170]] on ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/0 selected 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updateable 1 2021-09-09 12:12:51 031 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - update Accept@39a672eb[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170]] 2021-09-09 12:12:51 031 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Enabled protocols: [SSLv3, TLSv1, TLSv1.2] 2021-09-09 12:12:51 031 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Enabled cipher suites:[TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_DSS_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_DSS_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_RSA_WITH_AES_256_CBC_SHA256, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, TLS_DHE_DSS_WITH_AES_256_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_DSS_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_EMPTY_RENEGOTIATION_INFO_SCSV] 2021-09-09 12:12:51 032 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Starting handshake 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - run Accept@39a672eb[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-33] invocationID:{InvocationID} - SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->
idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-33] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@38583ab3 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-33] invocationID:{InvocationID} - new HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-33] invocationID:{InvocationID} - New HTTP Connection HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@21d17a37 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:12:51 032 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-33] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-33] invocationID:{InvocationID} - onOpen SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-33] invocationID:{InvocationID} - onOpen HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-33] invocationID:{InvocationID} - fillInterested HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - interested FillInterest@c9ab20{AC.ReadCB@34dabe87{HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - interested FillInterest@2ae369cc{SSLC.NBReadCB@58d0eb28{SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@75354e13 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Created SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - ran Accept@39a672eb[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - queue Accept@39a672eb[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170]] startThread=0 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updates 2 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - wakeup on updates SelectorProducer@d8e4250 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 2 updates 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updateable 2 2021-09-09 12:12:51 033 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@21d17a37 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@75354e13 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updates 0 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 034 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/REPRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1634]@2021-09-09T12:12:51.035036Z 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@3118a800 offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/REPRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1634]@2021-09-09T12:12:51.035112Z 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@7226b176 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@7226b176 started 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@7226b176 waiting 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@7226b176 startThread=0 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@3118a800 task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1634]@2021-09-09T12:12:51.035655Z 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-36] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1634]@2021-09-09T12:12:51.035569Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - fillable FillInterest@2ae369cc{SSLC.NBReadCB@58d0eb28{SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-34] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1635]@2021-09-09T12:12:51.035898Z tryProduce true 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updateable 0 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updates 0 2021-09-09 12:12:51 035 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - >c.onFillable SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - onFillable SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - fillable FillInterest@c9ab20{AC.ReadCB@34dabe87{HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=3/30000}}} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-36] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=3/30000} onFillable enter HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - >fill SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - filled 319 HeapByteBuffer@5498ae4e[p=0,l=319,c=17408,r=319]={<<<\x16\x03\x03\x01:\x01\x00\x016\x03\x03VV\x98\x7f\xCd\x0f\xDf\xBfP\x13y\x9a\x94v...\t\x00\x07\x02\x00\x04\x00\x00\x00\x00\x00\x17\x00\x00\x00+\x00\x05\x04\x03\x03\x03\x01>>>%`$u\xF69Y\xF5\x83...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net filled=319 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill starting handshake SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=319/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - unwrap net_filled=319 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 319 bytesProduced = 0 encryptedBuffer=[p=319,l=319,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 036 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - >flush SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 90 sequenceNumber = 0 [p=0,l=90,c=17408,r=90] ioDone=false/false 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - flushed 90 SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:12:51 038 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 6 sequenceNumber = 1 [p=0,l=6,c=17408,r=6] ioDone=false/false 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 45 sequenceNumber = 0 [p=0,l=45,c=17408,r=45] ioDone=false/false 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - flushed 45 SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - SslConnection@58d0eb28{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - filled 0 HeapByteBuffer@5498ae4e[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01:\x01\x00\x016...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net filled=0 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - SslConnection@58d0eb28{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - >fill SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - filled 6 HeapByteBuffer@5498ae4e[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x016\x03\x03VV\x98\x7f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net filled=6 2021-09-09 12:12:51 039 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Secure session established 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - unwrap net_filled=6 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=6,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:12:51 039 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - negotiated protocol: TLSv1.2 2021-09-09 12:12:51 039 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - filled 45 HeapByteBuffer@5498ae4e[p=0,l=45,c=17408,r=45]={<<<\x16\x03\x03\x00(\x00\x00\x00\x00\x00\x00\x00\x006?\xF7\x9d\xD7\xC9\xA7Ra4AS"\xE5\x16\xFdiu"\x85\xD2\xF1\xB5\xEa\xAf5V\xDa\x88\xA3\x92m>>>\xE7\x7f\xDe"\x91\xA7\xBd\xCb\xEb...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 039 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net filled=45 2021-09-09 12:12:51 039 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - peer principal: C=US, O=ONAP, OU=OSAAF, OU=holmes-rule-mgmt@holmes-rule-mgmt.onap.org:DEV, CN=holmes-rule-mgmt 2021-09-09 12:12:51 040 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - peer alternative names: [mark.d.manager@people.osaaf.com, holmes-rule-mgmt, holmes-rule-mgmt.api.simpledemo.onap.org, holmes-rule-mgmt.onap] 2021-09-09 12:12:51 040 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - issuer principal: CN=intermediateCA_9, OU=OSAAF, O=ONAP, C=US 2021-09-09 12:12:51 040 DEBUG [jdk.event.security][dw-36] invocationID:{InvocationID} - TLSHandshake: 127.0.0.1:33468, TLSv1.2, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 0 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - unwrap net_filled=45 Status = OK HandshakeStatus = FINISHED bytesConsumed = 45 bytesProduced = 0 encryptedBuffer=[p=45,l=45,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - handshake succeeded SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} resumed server TLSv1.2/TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:12:51 040 DEBUG [org.apache.http.impl.conn.DefaultHttpClientConnectionOperator][pool-2-thread-1] invocationID:{InvocationID} - Connection established 127.0.0.1:60170<->127.0.0.1:9101 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - filled 0 HeapByteBuffer@5498ae4e[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x00(\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - net filled=0 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.impl.conn.DefaultManagedHttpClientConnection][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66: set socket timeout to 30000 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Executing request GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1 2021-09-09 12:12:51 040 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Target auth state: UNCHALLENGED 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-36] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000} filled 0 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Proxy auth state: UNCHALLENGED 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-36] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.http.HttpParser][dw-36] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x01p\xFd\x13...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-36] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1 2021-09-09 12:12:51 040 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> Content-Type: application/json 2021-09-09 12:12:51 040 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> Host: 127.0.0.1:9101 2021-09-09 12:12:51 040 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> Connection: Keep-Alive 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-36] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> User-Agent: Apache-HttpClient/4.5.10 (Java/11.0.6) 2021-09-09 12:12:51 040 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> Accept-Encoding: gzip,deflate 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-36] invocationID:{InvocationID} - fillInterested HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1[\r][\n]" 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "Content-Type: application/json[\r][\n]" 2021-09-09 12:12:51 040 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - interested FillInterest@c9ab20{AC.ReadCB@34dabe87{HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "Host: 127.0.0.1:9101[\r][\n]" 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "Connection: Keep-Alive[\r][\n]" 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "User-Agent: Apache-HttpClient/4.5.10 (Java/11.0.6)[\r][\n]" 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "Accept-Encoding: gzip,deflate[\r][\n]" 2021-09-09 12:12:51 040 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 >> "[\r][\n]" 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - interested FillInterest@2ae369cc{SSLC.NBReadCB@58d0eb28{SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@75354e13 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-36] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updateable 1 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@75354e13 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@50089cfd size 1 > capacity 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updates 0 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@50089cfd in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:60170], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1635]@2021-09-09T12:12:51.041896Z 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@7226b176 offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1635]@2021-09-09T12:12:51.041934Z 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:12:51 041 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@5d2fa1de startThread=0 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@7226b176 task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1635]@2021-09-09T12:12:51.042025Z 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@5d2fa1de in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@5d2fa1de started 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@5d2fa1de waiting 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-32] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=1}][pc=0,pic=0,pec=6,epc=1635]@2021-09-09T12:12:51.042081Z tryProduce true 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updateable 0 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updates 0 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-34] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1635]@2021-09-09T12:12:51.042051Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - fillable FillInterest@2ae369cc{SSLC.NBReadCB@58d0eb28{SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >c.onFillable SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - onFillable SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - fillable FillInterest@c9ab20{AC.ReadCB@34dabe87{HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >fill SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - filled 236 HeapByteBuffer@5498ae4e[p=0,l=236,c=17408,r=236]={<<<\x17\x03\x03\x00\xE7\x00\x00\x00\x00\x00\x00\x00\x01\xF3\xAf\x13Q\x170)4\xEa5P\xBb.../\x83M\xFf\xC6E\xA8\xC6G\xC5\x17!\xC7-\xB3\xF8y\x86\x07\xE4A\x8a\x99>>>\x02\x03\x03\x03\x01\x03\x02\x02\x03...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - net filled=236 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - unwrap net_filled=236 Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 236 bytesProduced = 207 encryptedBuffer=[p=236,l=236,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=207,c=17408,r=207]={<< >>}\xE0\xC8\x06*'\x9a\xA1\xCf...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=207,c=17408,r=207]={<< >>}\xE0\xC8\x06*'\x9a\xA1\xCf...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@34dabe87[p=HttpParser{s=START,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000} filled 207 HeapByteBuffer@306ed067[p=0,l=207,c=17408,r=207]={<< >>}\xE0\xC8\x06*'\x9a\xA1\xCf...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=1/30000} parse HeapByteBuffer@306ed067[p=0,l=207,c=17408,r=207]={<< >>}\xE0\xC8\x06*'\x9a\xA1\xCf...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=207,c=17408,r=207]={<< >>}\xE0\xC8\x06*'\x9a\xA1\xCf...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - START --> SPACE1 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - URI --> SPACE2 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Content-Type: application/json --> IN_VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Content-Type: application/json --> FIELD 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Connection: keep-alive --> IN_VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Connection: keep-alive --> FIELD 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Accept-Encoding --> IN_VALUE 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Accept-Encoding --> FIELD 2021-09-09 12:12:51 042 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - REQUEST for //127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule on HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=0} GET //127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule HTTP/1.1 Content-Type: application/json Host: 127.0.0.1:9101 Connection: keep-alive User-Agent: Apache-HttpClient/4.5.10 (Java/11.0.6) Accept-Encoding: gzip,deflate 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - handle //127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=0} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - handling HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=0} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-34] invocationID:{InvocationID} - Host 127.0.0.1 with SNI null 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.Server][dw-34] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/rule on HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=0} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-34] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} handle Request(GET https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule)@16296a27 in null 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-34] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/rule @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-34] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/rule @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/rule -> io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - chain=customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - call filter customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-09 12:12:51 043 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Entering. 2021-09-09 12:12:51 043 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-09 12:12:51 043 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: d2d01684-6088-48f7-b99f-a199eb370c9e 2021-09-09 12:12:51 043 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-09 12:12:51 043 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:12:51 045 TRACE [org.skife.jdbi.v2.DBI][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@8af4e31] obtained in 0 millis 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@17d00739, maxRows=0, fetchSize=0, flags=16 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> CloseStatement(S_191) 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Parse(stmt=S_192,query="SELECT * FROM APLUS_RULE ",oids={}) 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Bind(stmt=S_192,portal=null) 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Describe(portal=null) 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-09 12:12:51 046 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Sync 2021-09-09 12:12:51 048 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - <=BE CloseComplete 2021-09-09 12:12:51 048 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - <=BE ErrorMessage(ERROR: relation "aplus_rule" does not exist Position: 15 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01) 2021-09-09 12:12:51 048 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-09 12:12:51 048 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query SELECT * FROM APLUS_RULE 2021-09-09 12:12:51 048 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query SYNC 2021-09-09 12:12:51 049 WARN [org.onap.holmes.rulemgt.db.CorrelationRuleQueryDao][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Failed to query the rule: id =null. 2021-09-09 12:12:51 049 TRACE [org.skife.jdbi.v2.DBI][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@8af4e31] released 2021-09-09 12:12:51 050 ERROR [org.onap.holmes.rulemgt.resources.RuleMgtResources][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - query rule failed,cause query condition conversion failure org.onap.holmes.common.exception.CorrelationException: Failed to query the rule. at org.onap.holmes.rulemgt.db.CorrelationRuleQueryDao.getCorrelationRulesByCondition(CorrelationRuleQueryDao.java:60) at org.onap.holmes.rulemgt.wrapper.RuleMgtWrapper.getCorrelationRuleByCondition(RuleMgtWrapper.java:235) at org.onap.holmes.rulemgt.resources.RuleMgtResources.getCorrelationRules(RuleMgtResources.java:135) at jdk.internal.reflect.GeneratedMethodAccessor35.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:391) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:80) at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:253) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) at org.glassfish.jersey.internal.Errors.process(Errors.java:292) at org.glassfish.jersey.internal.Errors.process(Errors.java:274) at org.glassfish.jersey.internal.Errors.process(Errors.java:244) at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:232) at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) at io.dropwizard.jetty.NonblockingServletHolder.handle(NonblockingServletHolder.java:50) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1617) at io.dropwizard.servlets.ThreadNameFilter.doFilter(ThreadNameFilter.java:35) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at io.dropwizard.jersey.filter.AllowedMethodsFilter.handle(AllowedMethodsFilter.java:47) at io.dropwizard.jersey.filter.AllowedMethodsFilter.doFilter(AllowedMethodsFilter.java:41) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.onap.holmes.common.utils.transactionid.TransactionIdFilter.doFilter(TransactionIdFilter.java:73) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:545) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1297) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1212) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at com.codahale.metrics.jetty9.InstrumentedHandler.handle(InstrumentedHandler.java:249) at io.dropwizard.jetty.ContextRoutingHandler.handle(ContextRoutingHandler.java:37) at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:54) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:173) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:500) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:270) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException: org.postgresql.util.PSQLException: ERROR: relation "aplus_rule" does not exist Position: 15 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 [statement:"SELECT * FROM APLUS_RULE ", located:"SELECT * FROM APLUS_RULE ", rewritten:"SELECT * FROM APLUS_RULE ", arguments:{ positional:{}, named:{}, finder:[]}] at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1338) at org.skife.jdbi.v2.Query.fold(Query.java:173) at org.skife.jdbi.v2.Query.list(Query.java:82) at org.skife.jdbi.v2.Query.list(Query.java:75) at org.onap.holmes.rulemgt.db.CorrelationRuleQueryDao.getCorrelationRulesByCondition(CorrelationRuleQueryDao.java:53) ... 71 common frames omitted Caused by: org.postgresql.util.PSQLException: ERROR: relation "aplus_rule" does not exist Position: 15 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2532) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2267) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:312) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:448) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:369) at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:153) at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:142) at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.apache.tomcat.jdbc.pool.StatementFacade$StatementProxy.invoke(StatementFacade.java:114) at com.sun.proxy.$Proxy81.execute(Unknown Source) at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1327) ... 75 common frames omitted 2021-09-09 12:12:51 051 DEBUG [org.glassfish.jersey.server.ServerRuntime$Responder][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Starting mapping of the exception. javax.ws.rs.WebApplicationException: HTTP 499 at org.onap.holmes.common.utils.ExceptionUtil.buildExceptionResponse(ExceptionUtil.java:32) at org.onap.holmes.rulemgt.resources.RuleMgtResources.getCorrelationRules(RuleMgtResources.java:140) at jdk.internal.reflect.GeneratedMethodAccessor35.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:391) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:80) at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:253) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) at org.glassfish.jersey.internal.Errors.process(Errors.java:292) at org.glassfish.jersey.internal.Errors.process(Errors.java:274) at org.glassfish.jersey.internal.Errors.process(Errors.java:244) at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:232) at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) at io.dropwizard.jetty.NonblockingServletHolder.handle(NonblockingServletHolder.java:50) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1617) at io.dropwizard.servlets.ThreadNameFilter.doFilter(ThreadNameFilter.java:35) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at io.dropwizard.jersey.filter.AllowedMethodsFilter.handle(AllowedMethodsFilter.java:47) at io.dropwizard.jersey.filter.AllowedMethodsFilter.doFilter(AllowedMethodsFilter.java:41) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.onap.holmes.common.utils.transactionid.TransactionIdFilter.doFilter(TransactionIdFilter.java:73) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:545) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1297) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1212) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at com.codahale.metrics.jetty9.InstrumentedHandler.handle(InstrumentedHandler.java:249) at io.dropwizard.jetty.ContextRoutingHandler.handle(ContextRoutingHandler.java:37) at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:54) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:173) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:500) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:270) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) 2021-09-09 12:12:51 051 DEBUG [org.glassfish.jersey.server.ServerRuntime$Responder][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - WebApplicationException (WAE) with non-null entity thrown. Response with status 499 is directly generated from the WAE. javax.ws.rs.WebApplicationException: HTTP 499 at org.onap.holmes.common.utils.ExceptionUtil.buildExceptionResponse(ExceptionUtil.java:32) at org.onap.holmes.rulemgt.resources.RuleMgtResources.getCorrelationRules(RuleMgtResources.java:140) at jdk.internal.reflect.GeneratedMethodAccessor35.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:391) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:80) at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:253) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) at org.glassfish.jersey.internal.Errors.process(Errors.java:292) at org.glassfish.jersey.internal.Errors.process(Errors.java:274) at org.glassfish.jersey.internal.Errors.process(Errors.java:244) at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:232) at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) at io.dropwizard.jetty.NonblockingServletHolder.handle(NonblockingServletHolder.java:50) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1617) at io.dropwizard.servlets.ThreadNameFilter.doFilter(ThreadNameFilter.java:35) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at io.dropwizard.jersey.filter.AllowedMethodsFilter.handle(AllowedMethodsFilter.java:47) at io.dropwizard.jersey.filter.AllowedMethodsFilter.doFilter(AllowedMethodsFilter.java:41) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.onap.holmes.common.utils.transactionid.TransactionIdFilter.doFilter(TransactionIdFilter.java:73) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:545) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1297) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1212) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at com.codahale.metrics.jetty9.InstrumentedHandler.handle(InstrumentedHandler.java:249) at io.dropwizard.jetty.ContextRoutingHandler.handle(ContextRoutingHandler.java:37) at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:54) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:173) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:500) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:270) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) 2021-09-09 12:12:51 051 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@38d93e1f exclude by status 499 2021-09-09 12:12:51 051 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@4be73c9[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=true committing=true callback=Blocker@134045a8{null} 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/rule on HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=8} 499 HTTP/1.1 Date: Thu, 09 Sep 2021 12:12:51 GMT X-TransactionID: d2d01684-6088-48f7-b99f-a199eb370c9e X-InvocationID: 41e4b0e0-87f7-49da-88d8-147a44f7340a Content-Length: 25 Content-Type: text/plain 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@702bd0f9[PROCESSING][i=HTTP/1.1{s=499,h=5,cl=25},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f32125] (null,[p=0,l=25,c=8192,r=25],true)@START 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=499,h=5,cl=25} last=true content=HeapByteBuffer@4be73c9[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Date: Thu, 09 Sep 2021 12:12:51 GMT X-TransactionID: d2d01684-6088-48f7-b99f-a199eb370c9e X-InvocationID: 41e4b0e0-87f7-49da-88d8-147a44f7340a Content-Length: 25 Content-Type: text/plain 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - CONTENT_LENGTH 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@702bd0f9[PROCESSING][i=HTTP/1.1{s=499,h=5,cl=25},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f32125] ([p=0,l=209,c=8192,r=209],[p=0,l=25,c=8192,r=25],true)@COMPLETING 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - write: WriteFlusher@76a43ae9{IDLE}->null [HeapByteBuffer@9155383[p=0,l=209,c=8192,r=209]={<< >>ary: Acce...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@4be73c9[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - update WriteFlusher@76a43ae9{WRITING}->null:IDLE-->WRITING 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - >flush SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=10/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=W,to=11/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@61061f01{s=COMPLETING}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=9} 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@9155383[p=0,l=209,c=8192,r=209]={<< >>ary: Acce...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@4be73c9[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-09 12:12:51 052 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 234 bytesProduced = 263 sequenceNumber = 1 [p=0,l=263,c=17408,r=263] ioDone=false/false 2021-09-09 12:12:51 053 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flushed 263 SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=10/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=W,to=12/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@61061f01{s=COMPLETING}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=10} 2021-09-09 12:12:51 053 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:12:51 054 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=W,to=13/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@61061f01{s=COMPLETING}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=11} 2021-09-09 12:12:51 054 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Flushed=true written=234 remaining=0 WriteFlusher@76a43ae9{WRITING}->null 2021-09-09 12:12:51 054 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - update WriteFlusher@76a43ae9{IDLE}->null:WRITING-->IDLE 2021-09-09 12:12:51 054 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@702bd0f9[PROCESSING][i=HTTP/1.1{s=499,h=5,cl=25},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@1f32125] ([p=209,l=209,c=8192,r=0],[p=25,l=25,c=8192,r=0],true)@END 2021-09-09 12:12:51 054 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-34 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=b1a770da-4d54-41f2-b0b9-33272428a16a, referenceCounter=0, store size=0} on thread dw-34 - GET /api/holmes-rule-mgmt/v1/rule 2021-09-09 12:12:51 054 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Exiting. 2021-09-09 12:12:51 055 DEBUG [org.eclipse.jetty.server.Server][dw-34] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=12} 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "HTTP/1.1 499 [\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "Date: Thu, 09 Sep 2021 12:12:51 GMT[\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "X-TransactionID: d2d01684-6088-48f7-b99f-a199eb370c9e[\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "X-InvocationID: 41e4b0e0-87f7-49da-88d8-147a44f7340a[\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "Content-Type: text/plain[\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "Content-Length: 25[\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "[\r][\n]" 2021-09-09 12:12:51 055 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << "Failed to query the rule." 2021-09-09 12:12:51 055 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - unhandle HttpChannelState@48963dd8{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-09-09 12:12:51 055 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << HTTP/1.1 499 2021-09-09 12:12:51 055 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << Date: Thu, 09 Sep 2021 12:12:51 GMT 2021-09-09 12:12:51 055 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << X-TransactionID: d2d01684-6088-48f7-b99f-a199eb370c9e 2021-09-09 12:12:51 055 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << X-InvocationID: 41e4b0e0-87f7-49da-88d8-147a44f7340a 2021-09-09 12:12:51 055 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << Content-Type: text/plain 2021-09-09 12:12:51 055 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66 << Content-Length: 25 2021-09-09 12:12:51 055 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Connection can be kept alive indefinitely 2021-09-09 12:12:51 055 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@48963dd8{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:12:51 055 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Cancelling request execution 2021-09-09 12:12:51 055 DEBUG [org.apache.http.impl.conn.DefaultManagedHttpClientConnection][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-66: Shutdown connection 2021-09-09 12:12:51 056 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=false/true,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=12} 2021-09-09 12:12:51 056 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - completed HttpChannelState@48963dd8{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:12:51 056 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - unhandle HttpChannelState@48963dd8{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:12:51 056 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:12:51 056 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=13} 2021-09-09 12:12:51 056 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/rule written=25 2021-09-09 12:12:51 057 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - unconsumed input HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=16/30000} 127.0.0.1 - - [09/Sep/2021:12:12:51 +0000] "GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1" 499 25 "-" "Apache-HttpClient/4.5.10 (Java/11.0.6)" 13 2021-09-09 12:12:51 057 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Connection discarded 2021-09-09 12:12:51 057 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >fill SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=16/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@61061f01{s=END}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=14} 2021-09-09 12:12:51 057 DEBUG [org.apache.http.impl.conn.PoolingHttpClientConnectionManager][pool-2-thread-1] invocationID:{InvocationID} - Connection released: [id: 66][route: {s}->https://127.0.0.1:9101][total kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 200] 2021-09-09 12:12:51 057 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:12:51 057 ERROR [org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling][pool-2-thread-1] invocationID:{InvocationID} - Failed to get right response!Get an error status from server : 499 org.onap.holmes.common.exception.CorrelationException: Get an error status from server : 499 at org.onap.holmes.common.utils.HttpsUtils.extractResponseEntity(HttpsUtils.java:153) at org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling.getAllCorrelationRules(DcaeConfigurationPolling.java:108) at org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling.run(DcaeConfigurationPolling.java:79) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.base/java.util.concurrent.FutureTask.runAndReset(Unknown Source) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.base/java.lang.Thread.run(Unknown Source) 2021-09-09 12:12:51 057 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - filled 31 HeapByteBuffer@5498ae4e[p=0,l=31,c=17408,r=31]={<<<\x15\x03\x03\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x02M\xAa\xD0\xBeB\x1f3\x03\xC7\xD2\x0e\n\xA3D\xC5\xCa\x1e\xEa>>>le-mgmt/v...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 057 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - net filled=31 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - unwrap net_filled=31 Status = CLOSED HandshakeStatus = NEED_WRAP bytesConsumed = 31 bytesProduced = 0 encryptedBuffer=[p=31,l=31,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@58d0eb28{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=17/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@61061f01{s=END}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=15} 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - atEOF HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=17/30000} filled -1 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=17/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - parseNext s=CONTENT HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 058 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - CONTENT --> CONTENT_END 2021-09-09 12:12:51 059 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - onContentComplete HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=16} 2021-09-09 12:12:51 059 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - CONTENT_END --> END 2021-09-09 12:12:51 059 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - onRequestComplete HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=16} 2021-09-09 12:12:51 059 DEBUG [org.eclipse.jetty.server.HttpInput][dw-34] invocationID:{InvocationID} - HttpInputOverHTTP@67585c90[c=0,q=0,[0]=null,s=STREAM] addContent EOF 2021-09-09 12:12:51 059 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - END --> CLOSED 2021-09-09 12:12:51 059 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=18/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-09 12:12:51 060 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=19/30000} 2021-09-09 12:12:51 060 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - recycle HttpChannelState@48963dd8{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:12:51 060 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 060 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >fill SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=19/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 060 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:12:51 061 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >flush SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=20/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 061 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:12:51 061 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:12:51 061 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - wrap Status = CLOSED HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 0 bytesProduced = 31 sequenceNumber = 2 [p=0,l=31,c=17408,r=31] ioDone=true/true 2021-09-09 12:12:51 063 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=22/30000} stored flush exception org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-09-09 12:12:51 063 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=22/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 063 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(org.eclipse.jetty.io.EofException) DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=22/30000} 2021-09-09 12:12:51 064 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - shutdownOutput: SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=23/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} oshut=false, ishut=false 2021-09-09 12:12:51 064 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >flush SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=23/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 064 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:12:51 064 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(org.eclipse.jetty.io.EofException) DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=23/30000} 2021-09-09 12:12:51 065 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=24/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 065 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=24/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 065 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - doClose SocketChannelEndPoint@37364178{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=/127.0.0.1:9101,r=/127.0.0.1:60170,CLOSED,fill=-,flush=-,to=24/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 065 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - onClose FillInterest@2ae369cc{null} 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Wakeup ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@495af49a startThread=0 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@495af49a in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@37364178{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=25/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-30] invocationID:{InvocationID} - onClose HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=25/30000} 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/0 selected 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-30] invocationID:{InvocationID} - onClose SslConnection@58d0eb28::SocketChannelEndPoint@37364178{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=25/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 0 updates 2021-09-09 12:12:51 066 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@495af49a in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:12:51 067 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updateable 0 2021-09-09 12:12:51 067 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updates 0 2021-09-09 12:12:51 067 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 0 keys 2021-09-09 12:12:51 068 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close SocketChannelEndPoint@37364178{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=10/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=27/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 068 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@37364178{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=10/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=27/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 068 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34] invocationID:{InvocationID} - ignored: WriteFlusher@76a43ae9{IDLE}->null org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-09-09 12:12:51 069 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - onFail FillInterest@c9ab20{null} org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-09-09 12:12:51 069 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 069 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(org.eclipse.jetty.io.EofException) DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000} 2021-09-09 12:12:51 069 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-09-09 12:12:51 070 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSED,0 of -1} 2021-09-09 12:12:51 070 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-09-09 12:12:51 070 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(null) DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-09-09 12:12:51 070 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:12:51 070 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - parseNext s=CLOSED HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:12:51 070 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-09 12:12:51 071 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000} 2021-09-09 12:12:51 071 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000} 2021-09-09 12:12:51 071 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@34dabe87::DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000} onFillable exit HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:12:51 071 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@58d0eb28{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4d2e9833{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000}=>HttpConnection@34dabe87[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@61061f01{s=START}]=>HttpChannelOverHttp@7abde477{s=HttpChannelState@48963dd8{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:12:51 071 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@3118a800 size 1 > capacity 2021-09-09 12:12:51 072 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@3118a800 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@3ef6df2c[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630]] on ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/0 selected 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - update Accept@3ef6df2c[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630]] 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - queue Accept@3ef6df2c[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630]] startThread=0 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 224 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-35] invocationID:{InvocationID} - run Accept@3ef6df2c[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 224 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-35] invocationID:{InvocationID} - SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-09 12:13:00 224 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-35] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@6c668ce6 2021-09-09 12:13:00 225 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-35] invocationID:{InvocationID} - new HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:13:00 225 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35] invocationID:{InvocationID} - New HTTP Connection HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:00 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@10044746 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:00 225 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-35] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-35] invocationID:{InvocationID} - onOpen SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-35] invocationID:{InvocationID} - onOpen HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-35] invocationID:{InvocationID} - fillInterested HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.FillInterest][dw-35] invocationID:{InvocationID} - interested FillInterest@691356e8{AC.ReadCB@f5c1f5e{HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 226 DEBUG [org.eclipse.jetty.io.FillInterest][dw-35] invocationID:{InvocationID} - interested FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3144f2b0 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 2 updates 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updateable 2 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@10044746 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Created SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3144f2b0 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-35] invocationID:{InvocationID} - ran Accept@3ef6df2c[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:00 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 228 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 228 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:00 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1636]@2021-09-09T12:13:00.228621Z 2021-09-09 12:13:00 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@5d2fa1de offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1636]@2021-09-09T12:13:00.228923Z 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@39718ebf startThread=0 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@5d2fa1de task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1636]@2021-09-09T12:13:00.229269Z 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@39718ebf in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@39718ebf started 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@39718ebf waiting 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-37] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1636]@2021-09-09T12:13:00.229514Z tryProduce true 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-32] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1636]@2021-09-09T12:13:00.22932Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=3/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=3/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 229 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 230 DEBUG [org.eclipse.jetty.io.FillInterest][dw-32] invocationID:{InvocationID} - fillable FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=3/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >c.onFillable SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=4/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - onFillable SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=4/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 230 DEBUG [org.eclipse.jetty.io.FillInterest][dw-32] invocationID:{InvocationID} - fillable FillInterest@691356e8{AC.ReadCB@f5c1f5e{HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=4/30000}}} 2021-09-09 12:13:00 230 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=4/30000} onFillable enter HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:00 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >fill SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:13:00 231 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - filled 261 HeapByteBuffer@4b1a7756[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03jZL\x9e\x98I:=\xE7\x16\xC2\xD3\x17"...\x08\xB9\x88\xE7\xC6\x88\xCa\x1b\xC3\xD4\r\xC2\x91\xC5\xA9\x8d\xAba\xE1\xE3\x13)s>>>\xC3\xB4h\xEa\x1a\x18\xD7\x8bj...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net filled=261 2021-09-09 12:13:00 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill starting handshake SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 233 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - unwrap net_filled=261 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 261 bytesProduced = 0 encryptedBuffer=[p=261,l=261,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 233 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:13:00 234 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:13:00 234 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >flush SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 234 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:00 234 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:00 234 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 166 sequenceNumber = 0 [p=0,l=166,c=17408,r=166] ioDone=false/false 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - filled 6 HeapByteBuffer@4b1a7756[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x00\xFc\x03\x03jZL\x9e...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net filled=6 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - unwrap net_filled=6 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=6,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - filled 367 HeapByteBuffer@4b1a7756[p=0,l=367,c=17408,r=367]={<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03jZL\x9e\x98I:=\xE7\x16\xC2\xD3\x17"...\xD0\x82sNi3\x8b\xBe\xA5\x96N1\xEf\xA2\xB7#\x96\x89?7\xCa\xBf\xEa>>>\xD0\xB2hl\x99\x8e\xDat\x04...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net filled=367 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - unwrap net_filled=367 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 367 bytesProduced = 0 encryptedBuffer=[p=367,l=367,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 235 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:13:00 240 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-32] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@6c668ce6 2021-09-09 12:13:00 243 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:13:00 243 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >flush SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 243 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:00 243 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:00 243 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 160 sequenceNumber = 1 [p=0,l=160,c=17408,r=160] ioDone=false/false 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 6 sequenceNumber = 2 [p=0,l=6,c=17408,r=6] ioDone=false/false 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=18/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 2686 sequenceNumber = 0 [p=0,l=2686,c=17408,r=2686] ioDone=false/false 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=18/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=18/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=18/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >fill SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000} filled 0 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.http.HttpParser][dw-32] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-32] invocationID:{InvocationID} - fillInterested HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=19/30000} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.FillInterest][dw-32] invocationID:{InvocationID} - interested FillInterest@691356e8{AC.ReadCB@f5c1f5e{HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 245 DEBUG [org.eclipse.jetty.io.FillInterest][dw-32] invocationID:{InvocationID} - interested FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3144f2b0 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-32] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@7226b176 size 1 > capacity 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3144f2b0 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@7226b176 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54630], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 246 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1637]@2021-09-09T12:13:00.247157Z 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@39718ebf offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1637]@2021-09-09T12:13:00.247236Z 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@6678acc5 startThread=0 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-37] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1637]@2021-09-09T12:13:00.247354Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@39718ebf task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1637]@2021-09-09T12:13:00.247496Z 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-33] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1638]@2021-09-09T12:13:00.247547Z tryProduce true 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - fillable FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >c.onFillable SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - onFillable SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - fillable FillInterest@691356e8{AC.ReadCB@f5c1f5e{HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-09-09 12:13:00 247 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:00 248 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >fill SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 248 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:00 248 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@6678acc5 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:00 252 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@6678acc5 started 2021-09-09 12:13:00 252 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@6678acc5 waiting 2021-09-09 12:13:00 252 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 230 HeapByteBuffer@4b1a7756[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005\xA3\xFc\x81,\x81\xD0\x98D`\x89\xFf\x93Z\x13L\x82\x9b\x16F\x9f...\xEb\x83vjM).\xBe\xCc\xFe\x0b\x8d\x1b;\xD4,\xA9O\xC9]\xBa~g>>>v\xA3\x15\xA1T\x98b\x06\x92...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 252 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=230 2021-09-09 12:13:00 253 DEBUG [jdk.event.security][dw-37] invocationID:{InvocationID} - TLSHandshake: 10.233.69.74:54630, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=230 Status = OK HandshakeStatus = FINISHED bytesConsumed = 58 bytesProduced = 0 encryptedBuffer=[p=58,l=230,c=17408,r=172] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - handshake succeeded SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=7/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} resumed server TLSv1.3/TLS_AES_128_GCM_SHA256 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...~\xB6\x166\x85i2<<<\x17\x03\x03\x00\xA7\xC5\x02\xC5u@8\x11U\xE5\xA0(\x8c\x14\xB2\\N\x96\x17\x0b\xC1...\xEb\x83vjM).\xBe\xCc\xFe\x0b\x8d\x1b;\xD4,\xA9O\xC9]\xBa~g>>>v\xA3\x15\xA1T\x98b\x06\x92...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 172 bytesProduced = 150 encryptedBuffer=[p=230,l=230,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xC4\x1c\n/P\xF8\xC8\x84\xDc...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xC4\x1c\n/P\xF8\xC8\x84\xDc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=7/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=START,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=7/30000} filled 150 HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xC4\x1c\n/P\xF8\xC8\x84\xDc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=8/30000} parse HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xC4\x1c\n/P\xF8\xC8\x84\xDc...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xC4\x1c\n/P\xF8\xC8\x84\xDc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - START --> SPACE1 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - URI --> SPACE2 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-09 12:13:00 253 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - REQUEST for //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.69.177:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=8/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=8/30000} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - handle //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - handling HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-37] invocationID:{InvocationID} - Host 10.233.69.177 with SNI null 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.Server][dw-37] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-37] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck)@4971885c in null 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-37] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:13:00 254 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-37] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:13:00 255 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-37] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:00 255 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-37] invocationID:{InvocationID} - chain=customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:00 255 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-37] invocationID:{InvocationID} - call filter customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-09 12:13:00 255 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-37] invocationID:{InvocationID} - Entering. 2021-09-09 12:13:00 255 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-37] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-09 12:13:00 255 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-37] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 47e520e2-64d5-4345-9ace-e634881f4d63 2021-09-09 12:13:00 255 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-37] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-09 12:13:00 255 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-37] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-09 12:13:00 255 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-37] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-09 12:13:00 255 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck)@4971885c 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@6cad4cda exclude no deflater 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@59cc54b6[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=true committing=true callback=Blocker@7a71c5ce{null} 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 200 OK HTTP/1.1 Connection: close Date: Thu, 09 Sep 2021 12:13:00 GMT X-TransactionID: 47e520e2-64d5-4345-9ace-e634881f4d63 X-InvocationID: e7070d52-727d-4371-b91f-af7e2644c4c8 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@3f0781b4[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@39cac112] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@59cc54b6[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Thu, 09 Sep 2021 12:13:00 GMT X-TransactionID: 47e520e2-64d5-4345-9ace-e634881f4d63 X-InvocationID: e7070d52-727d-4371-b91f-af7e2644c4c8 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@3f0781b4[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@39cac112] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@2985b79{IDLE}->null [HeapByteBuffer@9155383[p=0,l=252,c=8192,r=252]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@59cc54b6[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] 2021-09-09 12:13:00 257 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2985b79{WRITING}->null:IDLE-->WRITING 10.233.69.74 - - [09/Sep/2021:12:13:00 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 8 2021-09-09 12:13:00 258 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=W,to=12/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=COMPLETING}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-09 12:13:00 258 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@9155383[p=0,l=252,c=8192,r=252]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 258 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@59cc54b6[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 258 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-09 12:13:00 258 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 256 bytesProduced = 294 sequenceNumber = 0 [p=0,l=294,c=17408,r=294] ioDone=false/false 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=W,to=13/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=COMPLETING}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=W,to=13/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=COMPLETING}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@2985b79{WRITING}->null 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2985b79{IDLE}->null:WRITING-->IDLE 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@3f0781b4[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@39cac112] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@3f0781b4[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@39cac112] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=13/30000} 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=13/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} oshut=false, ishut=false 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=13/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:00 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - wrap Status = CLOSED HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 40 sequenceNumber = 1 [p=0,l=40,c=17408,r=40] ioDone=false/true 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=14/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=14/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=14/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=14/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=14/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7}}} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUTTING,fill=-,flush=-,to=14/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3144f2b0 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:00 260 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=e0acb3fd-f71b-4846-9fac-278f57e43fbc, referenceCounter=0, store size=0} on thread dw-37 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3144f2b0 2021-09-09 12:13:00 260 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-37] invocationID:{InvocationID} - Exiting. 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.server.Server][dw-37] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-09 12:13:00 260 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - unhandle HttpChannelState@70e38d31{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@70e38d31{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=8} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=15/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - completed HttpChannelState@70e38d31{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - unhandle HttpChannelState@70e38d31{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@70e38d31{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=8} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.69.177:9101 remote=/10.233.69.74:54630], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=15/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=8} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-37] invocationID:{InvocationID} - recycle HttpChannelState@70e38d31{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=15/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@65a1f92{s=END}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=8} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-37] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=15/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >fill SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=15/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1638]@2021-09-09T12:13:00.261584Z 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 24 HeapByteBuffer@4b1a7756[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13\xD1\xDd\x95\xBc\xE9\xB0\x03\xDe\x97`\x15\x06tI\t? >>Uv\xB0W5\xC9n\xB0\x8d...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=24 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@6678acc5 offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1638]@2021-09-09T12:13:00.261645Z 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@241aa9a3 startThread=0 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=24 Status = CLOSED HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 24 bytesProduced = 0 encryptedBuffer=[p=24,l=24,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@241aa9a3 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@241aa9a3 started 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@241aa9a3 waiting 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-33] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1638]@2021-09-09T12:13:00.261779Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=16/30000} filled -1 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - close DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:00 261 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - close(null) DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - fillable FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - shutdownOutput: SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} oshut=true, ishut=false 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - >c.onFillable SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-33] invocationID:{InvocationID} - close DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-33] invocationID:{InvocationID} - close(null) DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - ensureFillInterested SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - onFillable SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - interested FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - fillable FillInterest@691356e8{null} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - FillInterest@691356e8{null} lost race null 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - changeInterests p=true 0->1 for SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - close SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@6678acc5 task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.262457Z 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - Key interests updated 1 -> 1 on SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-36] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.26252Z tryProduce true 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@6678acc5 size 1 > capacity 2021-09-09 12:13:00 262 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@6678acc5 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - doClose SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.69.177:9101 remote=/10.233.69.74:54630], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@54e2b3{l=/10.233.69.177:9101,r=/10.233.69.74:54630,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=/10.233.69.177:9101,r=/10.233.69.74:54630,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - onClose FillInterest@5b9f02fb{SSLC.NBReadCB@7c62da72{SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/REPRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.263707Z 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - onFillableFail SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@241aa9a3 offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/REPRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.263762Z 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@69c786ab startThread=0 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - onFail FillInterest@691356e8{null} java.nio.channels.ClosedChannelException: null at org.eclipse.jetty.io.FillInterest.onClose(FillInterest.java:150) at org.eclipse.jetty.io.AbstractEndPoint.onClose(AbstractEndPoint.java:355) at org.eclipse.jetty.io.ChannelEndPoint.onClose(ChannelEndPoint.java:227) at org.eclipse.jetty.io.AbstractEndPoint.doOnClose(AbstractEndPoint.java:225) at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:192) at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:175) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.doClose(SslConnection.java:1366) at org.eclipse.jetty.io.AbstractEndPoint.doOnClose(AbstractEndPoint.java:220) at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:192) at org.eclipse.jetty.io.AbstractEndPoint.close(AbstractEndPoint.java:175) at org.eclipse.jetty.io.AbstractConnection.close(AbstractConnection.java:254) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:255) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Wakeup ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=1 updates=0 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@69c786ab in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@76b3a151 startThread=0 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@241aa9a3 task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.263935Z 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - onClose FillInterest@691356e8{null} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@69c786ab started 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-33] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.26385Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:00 263 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - fillable FillInterest@5b9f02fb{null} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-30] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=1}][pc=0,pic=0,pec=6,epc=1639]@2021-09-09T12:13:00.263992Z tryProduce true 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - FillInterest@5b9f02fb{null} lost race null 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-35] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@76b3a151 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=1}] 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@39718ebf size 1 > capacity 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@69c786ab waiting 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@39718ebf in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} onFillable exit HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - Ignoring key update for cancelled key SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@5d2fa1de size 1 > capacity 2021-09-09 12:13:00 264 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@5d2fa1de in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 265 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-30] invocationID:{InvocationID} - close SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 265 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-35] invocationID:{InvocationID} - onClose HttpConnection@f5c1f5e::DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000} 2021-09-09 12:13:00 265 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-30] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 265 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:00 265 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-35] invocationID:{InvocationID} - onClose SslConnection@7c62da72::SocketChannelEndPoint@54e2b3{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@7c62da72{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@5705a8e4{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=19/30000}=>HttpConnection@f5c1f5e[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@65a1f92{s=START}]=>HttpChannelOverHttp@3874f66d{s=HttpChannelState@70e38d31{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:00 265 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-35] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@76b3a151 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:00 294 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_268,269,1440048371) 2021-09-09 12:13:00 294 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_268,269,1440048371) has been shutdown 2021-09-09 12:13:00 296 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_265,266,284853024) 2021-09-09 12:13:00 296 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_265,266,284853024) has been shutdown 2021-09-09 12:13:00 298 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_267,268,1403997975) 2021-09-09 12:13:00 298 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_267,268,1403997975) has been shutdown 2021-09-09 12:13:00 299 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_266,267,1165028361) 2021-09-09 12:13:00 299 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_266,267,1165028361) has been shutdown 2021-09-09 12:13:00 879 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@41ed9b22] obtained in 0 millis 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@355f28c9, maxRows=0, fetchSize=0, flags=16 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> CloseStatement(S_192) 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Parse(stmt=S_193,query="/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY",oids={}) 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Bind(stmt=S_193,portal=null) 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Describe(portal=null) 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-09 12:13:00 880 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Sync 2021-09-09 12:13:00 883 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE CloseComplete 2021-09-09 12:13:00 883 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ErrorMessage(ERROR: relation "engine_entity" does not exist Position: 52 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01) 2021-09-09 12:13:00 883 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-09 12:13:00 883 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query /* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY 2021-09-09 12:13:00 883 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query SYNC 2021-09-09 12:13:00 883 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@41ed9b22] released 2021-09-09 12:13:00 883 ERROR [org.onap.holmes.rulemgt.RuleAllocator][RuleAllocatorTimer] invocationID:{InvocationID} - Failed to reallocate rules. org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException: org.postgresql.util.PSQLException: ERROR: relation "engine_entity" does not exist Position: 52 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 [statement:"SELECT * FROM ENGINE_ENTITY", located:"SELECT * FROM ENGINE_ENTITY", rewritten:"/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY", arguments:{ positional:{}, named:{}, finder:[]}] at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1338) at org.skife.jdbi.v2.Query.fold(Query.java:173) at org.skife.jdbi.v2.Query.list(Query.java:82) at org.skife.jdbi.v2.sqlobject.ResultReturnThing$IterableReturningThing.result(ResultReturnThing.java:253) at org.skife.jdbi.v2.sqlobject.ResultReturnThing.map(ResultReturnThing.java:46) at org.skife.jdbi.v2.sqlobject.QueryHandler.invoke(QueryHandler.java:41) at org.skife.jdbi.v2.sqlobject.SqlObject.invoke(SqlObject.java:224) at org.skife.jdbi.v2.sqlobject.SqlObject$3.intercept(SqlObject.java:133) at org.skife.jdbi.v2.sqlobject.CloseInternalDoNotUseThisClass$$EnhancerByCGLIB$$e40132ef.getAllEntities( ) at org.onap.holmes.common.engine.service.impl.EngineEntityServiceImpl.getAllEntities(EngineEntityServiceImpl.java:45) at org.onap.holmes.rulemgt.tools.EngineTools.getInstanceList(EngineTools.java:42) at org.onap.holmes.rulemgt.RuleAllocator.allocateRules(RuleAllocator.java:76) at org.onap.holmes.rulemgt.RuleAllocator$1.run(RuleAllocator.java:66) at java.base/java.util.TimerThread.mainLoop(Unknown Source) at java.base/java.util.TimerThread.run(Unknown Source) Caused by: org.postgresql.util.PSQLException: ERROR: relation "engine_entity" does not exist Position: 52 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2532) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2267) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:312) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:448) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:369) at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:153) at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:142) at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.apache.tomcat.jdbc.pool.StatementFacade$StatementProxy.invoke(StatementFacade.java:114) at com.sun.proxy.$Proxy81.execute(Unknown Source) at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1327) ... 14 common frames omitted 2021-09-09 12:13:10 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@2b491705[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758]] on ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/0 selected 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - update Accept@2b491705[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758]] 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - queue Accept@2b491705[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758]] startThread=0 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - run Accept@2b491705[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 224 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-32] invocationID:{InvocationID} - SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-32] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@4030644 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-32] invocationID:{InvocationID} - new HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-32] invocationID:{InvocationID} - New HTTP Connection HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@4a1e41d5 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-32] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-32] invocationID:{InvocationID} - onOpen SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-32] invocationID:{InvocationID} - onOpen HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:10 225 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-32] invocationID:{InvocationID} - fillInterested HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.FillInterest][dw-32] invocationID:{InvocationID} - interested FillInterest@47d6cc54{AC.ReadCB@682e52c1{HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-32] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.FillInterest][dw-32] invocationID:{InvocationID} - interested FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-32] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 2 updates 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - updateable 2 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@4a1e41d5 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 2021-09-09 12:13:10 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Created SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - ran Accept@2b491705[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:10 227 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1640]@2021-09-09T12:13:10.227948Z 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@69c786ab offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1640]@2021-09-09T12:13:10.228037Z 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@12893eeb startThread=0 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@12893eeb in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-30] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1640]@2021-09-09T12:13:10.228134Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@12893eeb started 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@69c786ab task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=1}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.228257Z 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@12893eeb waiting 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.FillInterest][dw-30] invocationID:{InvocationID} - fillable FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-34] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.228325Z tryProduce true 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >c.onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.FillInterest][dw-30] invocationID:{InvocationID} - fillable FillInterest@47d6cc54{AC.ReadCB@682e52c1{HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >fill SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - filled 261 HeapByteBuffer@4b1a7756[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03\x80\xF9*\x82\xAb'/\xC4\x93\xBcBah\xF7...\xE1\x97\xB5[k\x99u\xDe&\x8f>\x00R^\xBc'\xBd\xBf\xE49\r\xD0->>>\x15\x0b\r\x94\xC2\x18*z\x03...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net filled=261 2021-09-09 12:13:10 229 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill starting handshake SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 229 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - unwrap net_filled=261 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 261 bytesProduced = 0 encryptedBuffer=[p=261,l=261,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 229 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >flush SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 166 sequenceNumber = 0 [p=0,l=166,c=17408,r=166] ioDone=false/false 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - filled 6 HeapByteBuffer@4b1a7756[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x00\xFc\x03\x03\x80\xF9*\x82...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net filled=6 2021-09-09 12:13:10 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - unwrap net_filled=6 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=6,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:10 231 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=0,l=0,c=17408,r=0]={<<<>>>\x14\x03\x03\x00\x01\x01\x00\x00\xFc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:10 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 232 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >fill SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 232 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:10 232 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - filled 367 HeapByteBuffer@4b1a7756[p=0,l=367,c=17408,r=367]={<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\x80\xF9*\x82\xAb'/\xC4\x93\xBcBah\xF7...\x0c\x1e\xB0\xAcr\r\xEa\x9b\x9a\xA0\xC7Ui\xC6\x1c\xC56\xBa\x82\x93\xFd-\x0e>>>\xD0\xB2hl\x99\x8e\xDat\x04...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 232 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net filled=367 2021-09-09 12:13:10 232 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - unwrap net_filled=367 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 367 bytesProduced = 0 encryptedBuffer=[p=367,l=367,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 232 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:13:10 237 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-30] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@4030644 2021-09-09 12:13:10 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:13:10 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >flush SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:10 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 160 sequenceNumber = 1 [p=0,l=160,c=17408,r=160] ioDone=false/false 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 6 sequenceNumber = 2 [p=0,l=6,c=17408,r=6] ioDone=false/false 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 2686 sequenceNumber = 0 [p=0,l=2686,c=17408,r=2686] ioDone=false/false 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=16/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=16/30000} filled 0 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=16/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.http.HttpParser][dw-30] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=16/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-30] invocationID:{InvocationID} - fillInterested HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.FillInterest][dw-30] invocationID:{InvocationID} - interested FillInterest@47d6cc54{AC.ReadCB@682e52c1{HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.FillInterest][dw-30] invocationID:{InvocationID} - interested FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 10.233.69.74 - - [09/Sep/2021:12:13:10 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 6 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:10 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-30] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@241aa9a3 size 1 > capacity 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@241aa9a3 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54758], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.243714Z 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@12893eeb offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.243795Z 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@51380e9d startThread=0 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@12893eeb task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.243916Z 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-36] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.243975Z tryProduce true 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@51380e9d in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:10 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@51380e9d started 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@51380e9d waiting 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-34] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1641]@2021-09-09T12:13:10.24395Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - fillable FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >c.onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - fillable FillInterest@47d6cc54{AC.ReadCB@682e52c1{HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >fill SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 244 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:10 245 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - filled 230 HeapByteBuffer@4b1a7756[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005.\xEe\xA9AZ\x90\x87\x0e\xF1l\x08\xF2N Z\xE7\x03\xEe\xB1\x99...__\xF0\xE1u\xB6\xA64\xA3 \xD2\x1a\x9f\x8e\xB7J:\x1f\xF1\xDb\x13zd>>>\xD1\xD6^\x8fK^\xBfi_...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 245 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - net filled=230 2021-09-09 12:13:10 246 DEBUG [jdk.event.security][dw-34] invocationID:{InvocationID} - TLSHandshake: 10.233.69.74:54758, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-09 12:13:10 246 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - unwrap net_filled=230 Status = OK HandshakeStatus = FINISHED bytesConsumed = 58 bytesProduced = 0 encryptedBuffer=[p=58,l=230,c=17408,r=172] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#r0\x0f\r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 246 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - handshake succeeded SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} resumed server TLSv1.3/TLS_AES_128_GCM_SHA256 2021-09-09 12:13:10 246 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:13:10 246 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\x94:\x81\xB6\xC6\xA1\xE1<<<\x17\x03\x03\x00\xA72\xAd\x8b22B84\x0bM\xCb \xF5\xF4z$L\xD5Gg...__\xF0\xE1u\xB6\xA64\xA3 \xD2\x1a\x9f\x8e\xB7J:\x1f\xF1\xDb\x13zd>>>\xD1\xD6^\x8fK^\xBfi_...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 246 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:10 246 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 172 bytesProduced = 150 encryptedBuffer=[p=230,l=230,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xF6p\x0c\xCb\xF9\x9b\x13 \r...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xF6p\x0c\xCb\xF9\x9b\x13 \r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@682e52c1[p=HttpParser{s=START,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000} filled 150 HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xF6p\x0c\xCb\xF9\x9b\x13 \r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000} parse HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xF6p\x0c\xCb\xF9\x9b\x13 \r...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xF6p\x0c\xCb\xF9\x9b\x13 \r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - START --> SPACE1 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - URI --> SPACE2 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - REQUEST for //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.69.177:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=5/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=5/30000} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - handle //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - handling HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-34] invocationID:{InvocationID} - Host 10.233.69.177 with SNI null 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.Server][dw-34] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-34] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck)@61c1521 in null 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-34] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-34] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:13:10 247 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:10 248 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - chain=customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:10 248 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - call filter customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-09 12:13:10 248 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Entering. 2021-09-09 12:13:10 248 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-09 12:13:10 248 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: f2a4a701-7b62-48c8-bcab-c3c600212ea7 2021-09-09 12:13:10 248 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-09 12:13:10 248 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-09 12:13:10 248 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-09 12:13:10 248 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:10 249 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck)@61c1521 2021-09-09 12:13:10 249 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@238565ae exclude no deflater 2021-09-09 12:13:10 249 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@3de5ab60[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=true committing=true callback=Blocker@2cb806a7{null} 2021-09-09 12:13:10 249 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 200 OK HTTP/1.1 Connection: close Date: Thu, 09 Sep 2021 12:13:10 GMT X-TransactionID: f2a4a701-7b62-48c8-bcab-c3c600212ea7 X-InvocationID: d46d509f-f02f-433d-9595-db4548409161 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-09 12:13:10 249 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@4a6bab0c[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@424b1ffa] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@3de5ab60[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Thu, 09 Sep 2021 12:13:10 GMT X-TransactionID: f2a4a701-7b62-48c8-bcab-c3c600212ea7 X-InvocationID: d46d509f-f02f-433d-9595-db4548409161 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@4a6bab0c[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@424b1ffa] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@52e51278{IDLE}->null [HeapByteBuffer@9155383[p=0,l=252,c=8192,r=252]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@3de5ab60[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@52e51278{WRITING}->null:IDLE-->WRITING 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=W,to=7/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=COMPLETING}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@9155383[p=0,l=252,c=8192,r=252]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@3de5ab60[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 256 bytesProduced = 294 sequenceNumber = 0 [p=0,l=294,c=17408,r=294] ioDone=false/false 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=W,to=8/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=COMPLETING}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=W,to=8/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=COMPLETING}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@52e51278{WRITING}->null 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@52e51278{IDLE}->null:WRITING-->IDLE 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@4a6bab0c[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@424b1ffa] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-09 12:13:10 250 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@4a6bab0c[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@424b1ffa] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=8/30000} 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=8/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} oshut=false, ishut=false 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=8/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - wrap Status = CLOSED HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 40 sequenceNumber = 1 [p=0,l=40,c=17408,r=40] ioDone=false/true 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=9/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=9/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-09 12:13:10 251 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=9/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=9/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=9/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5}}} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUTTING,fill=-,flush=-,to=9/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 2021-09-09 12:13:10 252 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=c6abb366-a405-4d14-8947-921c45c7c631, referenceCounter=0, store size=0} on thread dw-34 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-09-09 12:13:10 252 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-34] invocationID:{InvocationID} - Exiting. 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=10/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.Server][dw-34] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - unhandle HttpChannelState@298a05aa{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@298a05aa{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - completed HttpChannelState@298a05aa{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.69.177:9101 remote=/10.233.69.74:54758], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=10/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=false/true,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - unhandle HttpChannelState@298a05aa{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@298a05aa{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=10/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 252 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=10/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@5df42571{s=END}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6}:runFillable:BLOCKING 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-34] invocationID:{InvocationID} - recycle HttpChannelState@298a05aa{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1642]@2021-09-09T12:13:10.253153Z 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@51380e9d offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1642]@2021-09-09T12:13:10.253211Z 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-34] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@43eef49f startThread=0 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - >fill SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=10/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@43eef49f in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@43eef49f started 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - filled 24 HeapByteBuffer@4b1a7756[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13n\xA6!)\x08e\xAb\xAf\xEe\x9b\xAdV\xB6e\x1bd%\n\x83>>>f\x98}\x01kY\x08\xBc\xD5...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - net filled=24 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@51380e9d task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=1}][pc=0,pic=0,pec=6,epc=1642]@2021-09-09T12:13:10.25342Z 2021-09-09 12:13:10 253 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@43eef49f waiting 2021-09-09 12:13:10 254 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-36] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1642]@2021-09-09T12:13:10.253325Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=11/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:10 254 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-33] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1643]@2021-09-09T12:13:10.254226Z tryProduce true 2021-09-09 12:13:10 254 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:10 254 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 255 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - unwrap net_filled=24 Status = CLOSED HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 24 bytesProduced = 0 encryptedBuffer=[p=24,l=24,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 255 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=19/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 255 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 255 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - fillable FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=19/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000} filled -1 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(null) DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - >c.onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-36] invocationID:{InvocationID} - close DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=13/30000} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-36] invocationID:{InvocationID} - close(null) DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=13/30000} 2021-09-09 12:13:10 256 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - shutdownOutput: SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=13/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} oshut=true, ishut=false 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=14/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - ensureFillInterested SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=14/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - fillable FillInterest@47d6cc54{null} 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.FillInterest][dw-36] invocationID:{InvocationID} - FillInterest@47d6cc54{null} lost race null 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-36] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=14/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@12893eeb size 1 > capacity 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - interested FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=14/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@12893eeb in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 257 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@49db43e6 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-33] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.69.177:9101 remote=/10.233.69.74:54758], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 258 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-34] invocationID:{InvocationID} - doClose SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-33] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@10e9b7b7{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=/10.233.69.177:9101,r=/10.233.69.74:54758,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1643]@2021-09-09T12:13:10.25912Z 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@43eef49f offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1643]@2021-09-09T12:13:10.259218Z 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@585b3f56 startThread=0 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-35] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@585b3f56 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@43eef49f task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=1}][pc=0,pic=0,pec=6,epc=1643]@2021-09-09T12:13:10.259509Z 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-35] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@585b3f56 started 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-35] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@585b3f56 waiting 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-37] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1643]@2021-09-09T12:13:10.259571Z tryProduce true 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-33] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1643]@2021-09-09T12:13:10.259445Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=2/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - Ignoring key update for cancelled key SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - fillable FillInterest@7ffe2d92{SSLC.NBReadCB@33c0aa69{SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - close SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-37] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:10 259 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - >c.onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-33] invocationID:{InvocationID} - close DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - onClose FillInterest@7ffe2d92{null} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-33] invocationID:{InvocationID} - close(null) DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-34] invocationID:{InvocationID} - Wakeup ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - onFillable SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=2/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=17/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3e84bbbd startThread=0 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.FillInterest][dw-34] invocationID:{InvocationID} - onClose FillInterest@47d6cc54{null} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/0 selected 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 0 updates 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - fillable FillInterest@47d6cc54{null} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.FillInterest][dw-33] invocationID:{InvocationID} - FillInterest@47d6cc54{null} lost race null 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.http.HttpParser][dw-34] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 0 keys 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3e84bbbd in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-34] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-34] invocationID:{InvocationID} - HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} onFillable exit HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-33] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-32] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@51380e9d size 1 > capacity 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-34] invocationID:{InvocationID} - SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-34] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@69c786ab size 1 > capacity 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-32] invocationID:{InvocationID} - onClose HttpConnection@682e52c1::DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@51380e9d in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-34] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@69c786ab in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-32] invocationID:{InvocationID} - onClose SslConnection@33c0aa69::SocketChannelEndPoint@10e9b7b7{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@33c0aa69{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@74035b23{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=18/30000}=>HttpConnection@682e52c1[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@5df42571{s=START}]=>HttpChannelOverHttp@31b2740d{s=HttpChannelState@298a05aa{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:10 260 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-32] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@3e84bbbd in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@5f6791c7[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984]] on ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-31-acceptor-0@7a0f06ad-RuleActiveApp@7cc2c551{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/0 selected 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - update Accept@5f6791c7[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984]] 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - queue Accept@5f6791c7[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984]] startThread=0 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - run Accept@5f6791c7[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:20 223 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-30] invocationID:{InvocationID} - SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-09 12:13:20 224 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-30] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@23b04b64 2021-09-09 12:13:20 224 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-30] invocationID:{InvocationID} - new HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} -> DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:13:20 224 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-30] invocationID:{InvocationID} - New HTTP Connection HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:20 224 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@6827e45d on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:20 224 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-30] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 224 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-30] invocationID:{InvocationID} - onOpen SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-30] invocationID:{InvocationID} - onOpen HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-30] invocationID:{InvocationID} - fillInterested HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.FillInterest][dw-30] invocationID:{InvocationID} - interested FillInterest@62a8131e{AC.ReadCB@64ec5bc9{HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-30] invocationID:{InvocationID} - SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.FillInterest][dw-30] invocationID:{InvocationID} - interested FillInterest@357a161a{SSLC.NBReadCB@1752429c{SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-30] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3039e48b on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-30] invocationID:{InvocationID} - Created SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 2 updates 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updateable 2 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$510/0x0000000100647440@6827e45d 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3039e48b 2021-09-09 12:13:20 225 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-30] invocationID:{InvocationID} - ran Accept@5f6791c7[java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984]] in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:20 226 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1644]@2021-09-09T12:13:20.22692Z 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@585b3f56 offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1644]@2021-09-09T12:13:20.227007Z 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@1a1709f6 startThread=0 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-35] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@585b3f56 task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1644]@2021-09-09T12:13:20.227212Z 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-36] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@1a1709f6 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@1a1709f6 started 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@1a1709f6 waiting 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-35] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1644]@2021-09-09T12:13:20.227303Z tryProduce true 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-37] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1644]@2021-09-09T12:13:20.227262Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - fillable FillInterest@357a161a{SSLC.NBReadCB@1752429c{SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >c.onFillable SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - onFillable SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - fillable FillInterest@62a8131e{AC.ReadCB@64ec5bc9{HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-09-09 12:13:20 227 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:20 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >fill SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:13:20 228 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 261 HeapByteBuffer@4b1a7756[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03\xBf\x12\xD4N\x9ed\xB0\xCcTB\t;\xD7B...\xB7\x8b\xDd\xA5*5\x95L\xB7\x7f[\x13\xB2Xo\x1e\x02\x1e\xD5\xDe\xF7\xD2\n>>>\x01\xFd\x8d\x8d\xC5K%\x9f\xD4...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=261 2021-09-09 12:13:20 228 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill starting handshake SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=261 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 261 bytesProduced = 0 encryptedBuffer=[p=261,l=261,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:13:20 230 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >flush SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 166 sequenceNumber = 0 [p=0,l=166,c=17408,r=166] ioDone=false/false 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@1752429c{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 6 HeapByteBuffer@4b1a7756[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x00\xFc\x03\x03\xBf\x12\xD4N...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=6 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=6 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=6,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 367 HeapByteBuffer@4b1a7756[p=0,l=367,c=17408,r=367]={<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\xBf\x12\xD4N\x9ed\xB0\xCcTB\t;\xD7B...\xCb\x06\xE5\xA2@q\xF3\xCe\x01\xD6\xB9Q\xDeU\x03U,@\x8c\xDeL\x98:>>>\xD0\xB2hl\x99\x8e\xDat\x04...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=367 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=367 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 367 bytesProduced = 0 encryptedBuffer=[p=367,l=367,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 231 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_TASK 2021-09-09 12:13:20 236 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-37] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@23b04b64 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >flush SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@173648d7[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 160 sequenceNumber = 1 [p=0,l=160,c=17408,r=160] ioDone=false/false 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:20 239 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 6 sequenceNumber = 2 [p=0,l=6,c=17408,r=6] ioDone=false/false 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 2686 sequenceNumber = 0 [p=0,l=2686,c=17408,r=2686] ioDone=false/false 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@1752429c{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >fill SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 240 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - unwrap net_filled=0 Status = BUFFER_UNDERFLOW HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 0 encryptedBuffer=[p=0,l=0,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=16/30000} filled 0 HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=16/30000} parse HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.http.HttpParser][dw-37] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=16/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-37] invocationID:{InvocationID} - fillInterested HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=16/30000} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - interested FillInterest@62a8131e{AC.ReadCB@64ec5bc9{HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.FillInterest][dw-37] invocationID:{InvocationID} - interested FillInterest@357a161a{SSLC.NBReadCB@1752429c{SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-37] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3039e48b on ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-37] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16e07bae{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken with none selected 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 0/0/1 selected 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 0 keys, 1 updates 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - updateable 1 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$504/0x0000000100611840@3039e48b 2021-09-09 12:13:20 241 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-37] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-37] invocationID:{InvocationID} - SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 woken up from select, 1/1/1 selected 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 processing 1 keys, 0 updates 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-37] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@43eef49f size 1 > capacity 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-37] invocationID:{InvocationID} - ran ReservedThreadExecutor@65859b44{s=1/1,p=0}@43eef49f in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}] 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-35] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.69.177:9101 remote=/10.233.69.74:54984], selector=sun.nio.ch.EPollSelectorImpl@29c65126, interestOps=1, readyOps=1 SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-35] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0} tryExecute EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=1/1,p=0}][pc=0,pic=0,pec=6,epc=1645]@2021-09-09T12:13:20.242487Z 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-35] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=0}@1a1709f6 offer EatWhatYouKill@76db9048/SelectorProducer@d8e4250/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=0}][pc=0,pic=0,pec=6,epc=1645]@2021-09-09T12:13:20.24256Z 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-35] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1} startReservedThread p=1 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-35] invocationID:{InvocationID} - queue ReservedThreadExecutor@65859b44{s=0/1,p=1}@6734dd85 startThread=0 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-36] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=0/1,p=1}@1a1709f6 task=EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1645]@2021-09-09T12:13:20.242774Z 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-36] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1645]@2021-09-09T12:13:20.242845Z tryProduce true 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updateable 0 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-33] invocationID:{InvocationID} - run ReservedThreadExecutor@65859b44{s=0/1,p=1}@6734dd85 in InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}] 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - updates 0 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=1}@6734dd85 started 2021-09-09 12:13:20 242 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-33] invocationID:{InvocationID} - ReservedThreadExecutor@65859b44{s=1/1,p=0}@6734dd85 waiting 2021-09-09 12:13:20 243 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-36] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 243 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-36] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@29c65126 waiting with 1 keys 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-35] invocationID:{InvocationID} - EatWhatYouKill@76db9048/SelectorProducer@d8e4250/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@20216016{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@65859b44{s=0/1,p=1}][pc=0,pic=0,pec=6,epc=1645]@2021-09-09T12:13:20.242683Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}:runFillable:BLOCKING/BLOCKING 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.io.FillInterest][dw-35] invocationID:{InvocationID} - fillable FillInterest@357a161a{SSLC.NBReadCB@1752429c{SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=7/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - >c.onFillable SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=7/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - onFillable SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=7/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.io.FillInterest][dw-35] invocationID:{InvocationID} - fillable FillInterest@62a8131e{AC.ReadCB@64ec5bc9{HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=FI,flush=-,to=7/30000}}} 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=7/30000} onFillable enter HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-09 12:13:20 248 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - >fill SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=7/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 249 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-09 12:13:20 249 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - filled 230 HeapByteBuffer@4b1a7756[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005\x0e\x92.\xEaI\xA8\xB6*d\xF9).\x8e(nu\xEe\xD5\xF3\x93...\xDd\x00\x86\xCa\xDa\xF9e("$\x19=\xC6\xCb\x06\x84\x14T\xCa-\xE2\xEfi>>>\x11\x88\x07^"\xA77hu...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 249 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - net filled=230 2021-09-09 12:13:20 250 DEBUG [jdk.event.security][dw-35] invocationID:{InvocationID} - TLSHandshake: 10.233.69.74:54984, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - unwrap net_filled=230 Status = OK HandshakeStatus = FINISHED bytesConsumed = 58 bytesProduced = 0 encryptedBuffer=[p=58,l=230,c=17408,r=172] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#EKD\x14...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - handshake succeeded SslConnection@1752429c::SocketChannelEndPoint@571ca12f{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@1752429c{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} resumed server TLSv1.3/TLS_AES_128_GCM_SHA256 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-35] invocationID:{InvocationID} - filled 0 HeapByteBuffer@4b1a7756[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\xEfaxx%\x98;<<<\x17\x03\x03\x00\xA7\xB3\x13Kd\x92\xFbH\x95KZd\xD9k\xB6i\xDf=NmV...\xDd\x00\x86\xCa\xDa\xF9e("$\x19=\xC6\xCb\x06\x84\x14T\xCa-\xE2\xEfi>>>\x11\x88\x07^"\xA77hu...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - net filled=0 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 172 bytesProduced = 150 encryptedBuffer=[p=230,l=230,c=17408,r=0] unwrapBuffer=HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xAa}\x04\xF6kj"\x97\xC5...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xAa}\x04\xF6kj"\x97\xC5...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-35] invocationID:{InvocationID} - SslConnection@1752429c{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@64ec5bc9[p=HttpParser{s=START,0 of -1},g=HttpGenerator@641c2e47{s=START}]=>HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=9/30000} filled 150 HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xAa}\x04\xF6kj"\x97\xC5...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=9/30000} parse HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xAa}\x04\xF6kj"\x97\xC5...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@306ed067[p=0,l=150,c=17408,r=150]={<< >>\xAa}\x04\xF6kj"\x97\xC5...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - START --> SPACE1 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - URI --> SPACE2 2021-09-09 12:13:20 250 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.http.HttpParser][dw-35] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-35] invocationID:{InvocationID} - REQUEST for //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.69.177:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35] invocationID:{InvocationID} - HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=10/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@64ec5bc9::DecryptedEndPoint@45a6d372{l=/10.233.69.177:9101,r=/10.233.69.74:54984,OPEN,fill=-,flush=-,to=10/30000} 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-35] invocationID:{InvocationID} - handle //10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-35] invocationID:{InvocationID} - handling HttpChannelState@77811174{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-09 12:13:20 251 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-35] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-35] invocationID:{InvocationID} - Host 10.233.69.177 with SNI null 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.server.Server][dw-35] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-35] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck)@14e3739d in null 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-35] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-35] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@1290c49{/,null,AVAILABLE} 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-35] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-35] invocationID:{InvocationID} - chain=customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-35] invocationID:{InvocationID} - call filter customFilter@401e02b4==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-09 12:13:20 252 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-35] invocationID:{InvocationID} - Entering. 2021-09-09 12:13:20 252 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-35] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-09 12:13:20 252 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-35] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 11f74316-27e2-4155-b0a9-1f85632decca 2021-09-09 12:13:20 252 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-35] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-35] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-410fc508@410fc508==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-35] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-62e73ab6@62e73ab6==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-09 12:13:20 252 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-4e974b9e@b0483de7==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@aca3c85{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck)@14e3739d 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@37c83320 exclude no deflater 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@210f961b[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=true committing=true callback=Blocker@6096bf4a{null} 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@2ca40c6d{s=HttpChannelState@77811174{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://10.233.69.177:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 200 OK HTTP/1.1 Connection: close Date: Thu, 09 Sep 2021 12:13:20 GMT X-TransactionID: 11f74316-27e2-4155-b0a9-1f85632decca X-InvocationID: 44de8057-40f0-4b79-9a3b-f443ac686d34 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@6f66575e[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@194128a1] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@210f961b[p=0,l=4,c=8192,r=4]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Thu, 09 Sep 2021 12:13:20 GMT X-TransactionID: 11f74316-27e2-4155-b0a9-1f85632decca X-InvocationID: 44de8057-40f0-4b79-9a3b-f443ac686d34 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-09 12:13:20 254 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-35 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@6f66575e[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@194128a1] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@C