By type
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.base/java.lang.Thread.run(Unknown Source) Caused by: javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or in an application resource file: java.naming.factory.initial at java.naming/javax.naming.spi.NamingManager.getInitialContext(Unknown Source) at java.naming/javax.naming.InitialContext.getDefaultInitCtx(Unknown Source) at java.naming/javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source) at java.naming/javax.naming.InitialContext.lookup(Unknown Source) ... 25 common frames omitted 2021-09-27 04:27:34 808 INFO [org.glassfish.jersey.process.internal.ExecutorProviders][pool-2-thread-1] invocationID:{InvocationID} - Selected ExecutorServiceProvider implementation [org.glassfish.jersey.client.DefaultClientAsyncExecutorProvider] to be used for injection of executor qualified by [org.glassfish.jersey.client.ClientAsyncExecutor] annotation. 2021-09-27 04:27:34 808 INFO [org.glassfish.jersey.process.internal.ExecutorProviders][pool-2-thread-1] invocationID:{InvocationID} - Selected ScheduledExecutorServiceProvider implementation [org.glassfish.jersey.client.DefaultClientBackgroundSchedulerProvider] to be used for injection of scheduler qualified by [org.glassfish.jersey.client.ClientBackgroundScheduler] annotation. 2021-09-27 04:27:34 810 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-27 04:27:34 811 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-27 04:27:34 812 TRACE [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - Proxy used: DIRECT 2021-09-27 04:27:34 812 DEBUG [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - sun.net.www.MessageHeader@826e8fa5 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-27 04:27:34 834 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-27 04:27:34 834 DEBUG [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - sun.net.www.MessageHeader@f4770215 pairs: {null: HTTP/1.1 200 OK}{x-onap-requestid: 07844487-9321-46da-afe8-45128cec8707}{Content-Type: application/json}{Content-Length: 4153}{Date: Mon, 27 Sep 2021 04:27:34 GMT} 2021-09-27 04:27:34 835 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-27 04:27:34 835 INFO [org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling][pool-2-thread-1] invocationID:{InvocationID} - Operation aborted due to identical configurations. 2021-09-27 04:27:34 886 TRACE [org.skife.jdbi.v2.DBI][EngineInstanceController] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@2d916b4c] obtained in 0 millis 2021-09-27 04:27:34 886 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@14b05088, maxRows=0, fetchSize=0, flags=16 2021-09-27 04:27:34 886 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - FE=> Bind(stmt=S_1,portal=null) 2021-09-27 04:27:34 886 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-27 04:27:34 886 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - FE=> Sync 2021-09-27 04:27:34 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE BindComplete [unnamed] 2021-09-27 04:27:34 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE DataRow(len=51) 2021-09-27 04:27:34 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE CommandStatus(SELECT 1) 2021-09-27 04:27:34 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-27 04:27:34 887 TRACE [org.skife.jdbi.v2.DBI][EngineInstanceController] invocationID:{InvocationID} - statement:[/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY] took 1 millis 2021-09-27 04:27:34 888 TRACE [org.postgresql.jdbc.PgConnection][EngineInstanceController] invocationID:{InvocationID} - getString columnIndex: 2 2021-09-27 04:27:34 888 TRACE [org.postgresql.jdbc.PgConnection][EngineInstanceController] invocationID:{InvocationID} - getInt columnIndex: 3 2021-09-27 04:27:34 888 TRACE [org.postgresql.jdbc.PgConnection][EngineInstanceController] invocationID:{InvocationID} - getLong columnIndex: 4 2021-09-27 04:27:34 888 TRACE [org.skife.jdbi.v2.DBI][EngineInstanceController] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@2d916b4c] released 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@2c0e7995[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142]] on ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/0 selected 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:34 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update Accept@2c0e7995[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142]] 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - queue Accept@2c0e7995[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142]] startThread=0 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - run Accept@2c0e7995[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-24] invocationID:{InvocationID} - SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->
idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-24] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@6d5dca2b 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - new HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@230c8293{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - New HTTP Connection HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@7ed1f7a0 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - onOpen SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - onOpen HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - fillInterested HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - interested FillInterest@46b6f95d{AC.ReadCB@3e95dab7{HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 977 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - interested FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Created SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 2 updates 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 2 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@7ed1f7a0 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - ran Accept@2c0e7995[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5470]@2021-09-27T04:27:34.978848Z 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@6d653add offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5470]@2021-09-27T04:27:34.978895Z 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:34 978 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@3fd94e83 startThread=0 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@3fd94e83 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-27] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5470]@2021-09-27T04:27:34.978976Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@3fd94e83 started 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@3fd94e83 waiting 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - fillable FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >c.onFillable SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@6d653add task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.979148Z 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - onFillable SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - fillable FillInterest@46b6f95d{AC.ReadCB@3e95dab7{HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@230c8293{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >fill SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 261 HeapByteBuffer@6bf2e081[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03<8\n\xA1;\xAd\xD3\x9eA\r9\x9e\xB0\x11...\xC0G\xB6\x92I@\xA4]<\xFc\x8d\xBa\xA9\xBc{#\xB8=~\x9d0)(>>>\x9bx\x14j~\xFd\x1c\xB5\xCc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=261 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill starting handshake SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 979 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-20] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.979598Z tryProduce true 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_TASK,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >flush SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 373 HeapByteBuffer@6bf2e081[p=0,l=373,c=17408,r=373]={<<<\x14\x03\x03\x00\x01\x01\x16\x03\x03\x01j\x01\x00\x01f\x03\x03<8\n\xA1;\xAd\xD3\x9e...L\xB1$2\x8f\xA2\xC6c\xA8!\x05\x14\xDb\xCeR9Ry\xAbK\xDc\xEa\xDa>>>.volte.sc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=373 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - unwrap net_filled=373 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=373,c=17408,r=367] unwrapBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=6,l=373,c=17408,r=367]={\x14\x03\x03\x00\x01\x01<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03<8\n\xA1;\xAd\xD3\x9eA\r9\x9e\xB0\x11...L\xB1$2\x8f\xA2\xC6c\xA8!\x05\x14\xDb\xCeR9Ry\xAbK\xDc\xEa\xDa>>>.volte.sc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 367 bytesProduced = 0 encryptedBuffer=[p=373,l=373,c=17408,r=0] unwrapBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:34 984 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-27] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@6d5dca2b 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >flush SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x14\x03\x03\x00\x01\x01\x16\x03\x03...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >fill SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x14\x03\x03\x00\x01\x01\x16\x03\x03...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000} filled 0 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-27] invocationID:{InvocationID} - fillInterested HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=9/30000} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - interested FillInterest@46b6f95d{AC.ReadCB@3e95dab7{HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - interested FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@230c8293{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@27545c0b size 1 > capacity 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@27545c0b in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:34 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59142], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 988 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 988 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.988722Z 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@3fd94e83 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.988758Z 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@2e78509a startThread=0 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@2e78509a in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@3fd94e83 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.988917Z 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@2e78509a started 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@2e78509a waiting 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=1}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.988941Z tryProduce true 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:34 988 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-20] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5471]@2021-09-27T04:27:34.988884Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - fillable FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >c.onFillable SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - onFillable SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - fillable FillInterest@46b6f95d{AC.ReadCB@3e95dab7{HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@230c8293{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >fill SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 230 HeapByteBuffer@6bf2e081[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005o\x85\x1d\xF4i\x15X?^\xC3\xFb\xDe\x9c\xAb\x94\x9e\xF4`''...\xBc_\x12\xF0\x19\x95\xF3\xDfX\t\xF1\x84\x92R\xB8\x07\x1d\x7f\x05\xEa\xC6\xEb`>>>C\x13\x01\xAa\x92JJ\xEe\x87...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=230 2021-09-27 04:27:34 989 DEBUG [jdk.event.security][dw-20] invocationID:{InvocationID} - TLSHandshake: 10.233.71.46:59142, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x9dD\x0b\xD3...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - handshake succeeded SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\xC2\xD0q\x17%l\x8d<<<\x17\x03\x03\x00\xA7\x9b|3n\xD2\xC5F^.Si\\E\x9ce\n\xBe\x1a\xD3j...\xBc_\x12\xF0\x19\x95\xF3\xDfX\t\xF1\x84\x92R\xB8\x07\x1d\x7f\x05\xEa\xC6\xEb`>>>C\x13\x01\xAa\x92JJ\xEe\x87...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>$\xB5>Fa\xD3\xF1\x9dN...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>$\xB5>Fa\xD3\xF1\x9dN...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=START,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000} filled 150 HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>$\xB5>Fa\xD3\xF1\x9dN...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000} parse HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>$\xB5>Fa\xD3\xF1\x9dN...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>$\xB5>Fa\xD3\xF1\x9dN...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - START --> SPACE1 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - URI --> SPACE2 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - REQUEST for //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.71.206:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=3/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=3/30000} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - handle //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - handling HttpChannelState@230c8293{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-20] invocationID:{InvocationID} - Host 10.233.71.206 with SNI null 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.Server][dw-20] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-20] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@49f67af in null 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-20] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-20] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-20] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-20] invocationID:{InvocationID} - chain=customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:34 990 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-20] invocationID:{InvocationID} - call filter customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-27 04:27:34 990 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-20] invocationID:{InvocationID} - Entering. 2021-09-27 04:27:34 990 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-20] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-27 04:27:34 990 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-20] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 21ed9e3b-d6ec-421f-abb3-846d3fa4e9a2 2021-09-27 04:27:34 991 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-20] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-20] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-20] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@49f67af 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@7f9a1ca5 exclude no deflater 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@4a726b60[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@26621e34{null} 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 200 OK HTTP/1.1 Connection: close Date: Mon, 27 Sep 2021 04:27:34 GMT X-TransactionID: 21ed9e3b-d6ec-421f-abb3-846d3fa4e9a2 X-InvocationID: 53ad5bb3-6316-4321-a1e5-4c7167a3feab Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@59bfb748[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76efe7ee] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@4a726b60[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-27 04:27:34 991 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Mon, 27 Sep 2021 04:27:34 GMT X-TransactionID: 21ed9e3b-d6ec-421f-abb3-846d3fa4e9a2 X-InvocationID: 53ad5bb3-6316-4321-a1e5-4c7167a3feab Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@59bfb748[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76efe7ee] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@2f1fbb38{IDLE}->null [HeapByteBuffer@32fa4450[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@4a726b60[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-27 04:27:34 991 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2f1fbb38{WRITING}->null:IDLE-->WRITING 2021-09-27 04:27:34 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=COMPLETING}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@32fa4450[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-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@4a726b60[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-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - 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-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=COMPLETING}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=COMPLETING}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@2f1fbb38{WRITING}->null 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2f1fbb38{IDLE}->null:WRITING-->IDLE 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@59bfb748[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76efe7ee] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@59bfb748[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@76efe7ee] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=5/30000} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} oshut=false, ishut=false 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - 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-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:34 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3}}} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 2021-09-27 04:27:34 993 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=71195a88-9ee7-4c58-94c2-5ec58741dca8, referenceCounter=0, store size=0} on thread dw-20 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-09-27 04:27:34 993 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-20] invocationID:{InvocationID} - Exiting. 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=5/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.Server][dw-20] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - unhandle HttpChannelState@230c8293{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.71.206:9101 remote=/10.233.71.46:59142], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@230c8293{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - completed HttpChannelState@230c8293{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - unhandle HttpChannelState@230c8293{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@230c8293{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3}:runFillable:BLOCKING 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5472]@2021-09-27T04:27:34.993609Z 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@2e78509a offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5472]@2021-09-27T04:27:34.993652Z 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-20] invocationID:{InvocationID} - recycle HttpChannelState@230c8293{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 10.233.71.46 - - [27/Sep/2021:04:27:34 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 3 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@22d85bb3 startThread=0 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5472]@2021-09-27T04:27:34.993708Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 993 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@2e78509a task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.99377Z 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@56e6c154{s=END}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.993822Z tryProduce true 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-20] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@22d85bb3 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >c.onFillable SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@22d85bb3 started 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@22d85bb3 waiting 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >fill SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 24 HeapByteBuffer@6bf2e081[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13yKh\xAf\xBag\xDf\xA9\xC6\x05\xA6R44|\\[\xA9\xE7>>>4\xD9\xDat\x00\xB4\xDc&r...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=24 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000} filled -1 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - close DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - close(null) DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillable SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@46b6f95d{null} 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - FillInterest@46b6f95d{null} lost race null 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - shutdownOutput: SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@3fd94e83 size 1 > capacity 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@3fd94e83 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - ensureFillInterested SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - interested FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - close SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@79bc47a8 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - doClose SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.71.206:9101 remote=/10.233.71.46:59142], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@1ce04d02{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=/10.233.71.206:9101,r=/10.233.71.46:59142,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@1ce04d02{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - onClose FillInterest@37ab7adc{SSLC.NBReadCB@390eeaf3{SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@1ce04d02{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - onFillableFail SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.995163Z 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - onFail FillInterest@46b6f95d{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@22d85bb3 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.995218Z 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Wakeup ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=1 updates=0 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@19da7b18 startThread=0 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@193a9351 startThread=0 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@19da7b18 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@193a9351 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@19da7b18 started 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@22d85bb3 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.995303Z 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@19da7b18 waiting 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-26] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.995365Z tryProduce true 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5473]@2021-09-27T04:27:34.995278Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@1ce04d02{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - fillable FillInterest@37ab7adc{null} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@1ce04d02{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - FillInterest@37ab7adc{null} lost race null 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - onClose HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@2e78509a size 1 > capacity 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@2e78509a in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - onClose SslConnection@390eeaf3::SocketChannelEndPoint@1ce04d02{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@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - Ignoring key update for cancelled key SocketChannelEndPoint@1ce04d02{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@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@193a9351 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - onClose FillInterest@46b6f95d{null} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - close SocketChannelEndPoint@1ce04d02{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@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000} 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3e95dab7::DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000} onFillable exit HttpChannelState@230c8293{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@1ce04d02{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@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@390eeaf3{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@3d1a43ad{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}=>HttpConnection@3e95dab7[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@56e6c154{s=START}]=>HttpChannelOverHttp@5f33e6fb{s=HttpChannelState@230c8293{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-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@6d653add size 1 > capacity 2021-09-27 04:27:34 995 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@6d653add in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 390 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@8187adb[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452]] on ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-27 04:27:40 390 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-27 04:27:40 390 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:40 390 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/0 selected 2021-09-27 04:27:40 390 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:40 390 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - update Accept@8187adb[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452]] 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - queue Accept@8187adb[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452]] startThread=0 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - run Accept@8187adb[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-27] invocationID:{InvocationID} - SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-27] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@3508fffc 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - new HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@d3abc50{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - New HTTP Connection HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@65293c9c on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-27] invocationID:{InvocationID} - onOpen SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-27] invocationID:{InvocationID} - onOpen HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-27] invocationID:{InvocationID} - fillInterested HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - interested FillInterest@604b7b4a{AC.ReadCB@fe51b79{HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 391 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - interested FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Created SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 2 updates 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 2 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@65293c9c 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - ran Accept@8187adb[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5474]@2021-09-27T04:27:40.392696Z 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@19da7b18 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5474]@2021-09-27T04:27:40.392748Z 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@18de16d3 startThread=0 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@19da7b18 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5474]@2021-09-27T04:27:40.392836Z 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@18de16d3 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@18de16d3 started 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@18de16d3 waiting 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-25] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5474]@2021-09-27T04:27:40.392912Z tryProduce true 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:40 392 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-26] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5474]@2021-09-27T04:27:40.392949Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - fillable FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >c.onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - fillable FillInterest@604b7b4a{AC.ReadCB@fe51b79{HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@d3abc50{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >fill SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 261 HeapByteBuffer@6bf2e081[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03c!B\x08q@r!b\xA5\x14t\xEa\x8d...\xE7\xB3\x0bl\xC7"\xF5\r\x02\x06\x97>\xF8\xEf\r\x99d\xC3\x89\xF9\xC5\xE3J>>>\x13^h\x84;\xDb`\xB5\xB8...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=261 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill starting handshake SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 393 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >flush SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 6 HeapByteBuffer@6bf2e081[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x00\xFc\x03\x03c!B\x08...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=6 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 367 HeapByteBuffer@6bf2e081[p=0,l=367,c=17408,r=367]={<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03c!B\x08q@r!b\xA5\x14t\xEa\x8d...e\xC5\x16Ru\xB9\x85\x95\xA2KF\xC6\x80\xE8\xCa\x8b\x1a >>y\xAbK\xDc\xEa\xDa.vo...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=367 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 394 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:40 397 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-26] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@3508fffc 2021-09-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >flush SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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-27 04:27:40 400 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >fill SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 401 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=10/30000} filled 0 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=10/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.http.HttpParser][dw-26] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=10/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-27 04:27:40 401 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=10/30000} 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - fillInterested HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=10/30000} 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@604b7b4a{AC.ReadCB@fe51b79{HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@d3abc50{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 402 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@22d85bb3 size 1 > capacity 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 402 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@22d85bb3 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:40 402 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59452], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 403 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 403 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 403 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5475]@2021-09-27T04:27:40.403394Z 2021-09-27 04:27:40 403 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@18de16d3 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5475]@2021-09-27T04:27:40.403488Z 2021-09-27 04:27:40 403 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:40 403 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@79f99ca1 startThread=0 2021-09-27 04:27:40 403 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-25] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5475]@2021-09-27T04:27:40.403658Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 403 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - fillable FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 404 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >c.onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 404 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 404 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - fillable FillInterest@604b7b4a{AC.ReadCB@fe51b79{HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-09-27 04:27:40 404 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@d3abc50{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:40 404 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >fill SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 404 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@18de16d3 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5476]@2021-09-27T04:27:40.404396Z 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5476]@2021-09-27T04:27:40.405797Z tryProduce true 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 230 HeapByteBuffer@6bf2e081[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005*\x8a\x12\xAab\x13\xDc\xF1\xFc\xAf\x1a~\xF6\xDe\x83\xCf\xF1l\xEf....v^_\x89\xCc\x066\xB9`\xE0!\xC0\x7f\xF2\xE23\x8f\x93\x91?\xE5\x08K>>>\x9ey2a3\xC1\xC7_\xE6...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=230 2021-09-27 04:27:40 405 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=230/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 405 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@79f99ca1 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@79f99ca1 started 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@79f99ca1 waiting 2021-09-27 04:27:40 407 DEBUG [jdk.event.security][dw-25] invocationID:{InvocationID} - TLSHandshake: 10.233.71.46:59452, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xCb!\xDc\x91...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - handshake succeeded SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 407 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\x95e\x99\x08\x01\xC3\x12<<<\x17\x03\x03\x00\xA7w\xBa\xA9\xF2\xA9u\xB8\xEfA-\xBc\xDa\x1b\xEb\x8c~\xCa\x0f\x9a\x16...v^_\x89\xCc\x066\xB9`\xE0!\xC0\x7f\xF2\xE23\x8f\x93\x91?\xE5\x08K>>>\x9ey2a3\xC1\xC7_\xE6...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:40 407 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-\xCd\\d\x1e\x17\xF0)\x83...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-\xCd\\d\x1e\x17\xF0)\x83...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000}=>HttpConnection@fe51b79[p=HttpParser{s=START,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000} filled 150 HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-\xCd\\d\x1e\x17\xF0)\x83...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000} parse HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-\xCd\\d\x1e\x17\xF0)\x83...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-\xCd\\d\x1e\x17\xF0)\x83...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - START --> SPACE1 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - URI --> SPACE2 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - REQUEST for //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.71.206:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - handle //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - handling HttpChannelState@d3abc50{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:40 408 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-25] invocationID:{InvocationID} - Host 10.233.71.206 with SNI null 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.server.Server][dw-25] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-25] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@39bb95e in null 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-25] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-25] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-25] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-25] invocationID:{InvocationID} - chain=customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-25] invocationID:{InvocationID} - call filter customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-27 04:27:40 409 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-25] invocationID:{InvocationID} - Entering. 2021-09-27 04:27:40 409 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-25] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-27 04:27:40 409 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-25] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 3a434649-2c22-4cd2-a85d-33a586058248 2021-09-27 04:27:40 409 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-25] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-25] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-25] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-27 04:27:40 409 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:40 410 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@39bb95e 2021-09-27 04:27:40 410 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@7d18b759 exclude no deflater 2021-09-27 04:27:40 410 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@1d975409[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@28becf8e{null} 2021-09-27 04:27:40 410 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 200 OK HTTP/1.1 Connection: close Date: Mon, 27 Sep 2021 04:27:40 GMT X-TransactionID: 3a434649-2c22-4cd2-a85d-33a586058248 X-InvocationID: 14fae24f-43c1-4f2f-b6c9-ef344d70e719 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@7631c28e[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e2b116e] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@1d975409[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-27 04:27:40 411 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Mon, 27 Sep 2021 04:27:40 GMT X-TransactionID: 3a434649-2c22-4cd2-a85d-33a586058248 X-InvocationID: 14fae24f-43c1-4f2f-b6c9-ef344d70e719 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@7631c28e[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e2b116e] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@693b23be{IDLE}->null [HeapByteBuffer@32fa4450[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@1d975409[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-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@693b23be{WRITING}->null:IDLE-->WRITING 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=W,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=COMPLETING}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@32fa4450[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-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@1d975409[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-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - 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-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=W,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=COMPLETING}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:40 411 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=W,to=9/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=COMPLETING}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@693b23be{WRITING}->null 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@693b23be{IDLE}->null:WRITING-->IDLE 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@7631c28e[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e2b116e] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@7631c28e[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4e2b116e] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=10/30000} 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=10/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} oshut=false, ishut=false 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=10/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:40 412 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:40 413 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - 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-27 04:27:40 413 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=11/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-27 04:27:40 413 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:40 413 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=11/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-27 04:27:40 413 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=11/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-27 04:27:40 413 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=11/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=11/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6}}} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUTTING,fill=-,flush=-,to=12/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=12/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 414 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=bf51755f-a4d8-4c3a-9ce7-a2a180a470c8, referenceCounter=0, store size=0} on thread dw-25 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:40 414 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-25] invocationID:{InvocationID} - Exiting. 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.71.206:9101 remote=/10.233.71.46:59452], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=12/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=12/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=12/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6}:runFillable:BLOCKING 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5476]@2021-09-27T04:27:40.41489Z 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@79f99ca1 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5476]@2021-09-27T04:27:40.414926Z 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.server.Server][dw-25] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@266f3a78 startThread=0 2021-09-27 04:27:40 414 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - unhandle HttpChannelState@d3abc50{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@266f3a78 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@d3abc50{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@266f3a78 started 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@266f3a78 waiting 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5476]@2021-09-27T04:27:40.414982Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=12/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7}:runFillable:BLOCKING/BLOCKING 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - completed HttpChannelState@d3abc50{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - unhandle HttpChannelState@d3abc50{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@d3abc50{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7}}} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >c.onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@604b7b4a{null} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - FillInterest@604b7b4a{null} lost race null 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@47529e0a{s=END}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 10.233.71.46 - - [27/Sep/2021:04:27:40 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 7 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@79f99ca1 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5477]@2021-09-27T04:27:40.415754Z 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5477]@2021-09-27T04:27:40.415814Z tryProduce true 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@79f99ca1 size 1 > capacity 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-25] invocationID:{InvocationID} - recycle HttpChannelState@d3abc50{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@79f99ca1 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-09-27 04:27:40 415 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-25] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >fill SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=13/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 24 HeapByteBuffer@6bf2e081[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13\xBel\xD6\xB4*\xCd#\x87\x94\xAfz\r\x0e\x83\x1f"+:\xDb>>>`Xo\xEf\x1e+\x01l\xE6...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=24 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=14/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 416 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=14/30000} filled -1 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25] invocationID:{InvocationID} - close DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=14/30000} 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25] invocationID:{InvocationID} - close(null) DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=14/30000} 2021-09-27 04:27:40 416 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - shutdownOutput: SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=14/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - ensureFillInterested SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=14/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - interested FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@3fd298bf 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25] invocationID:{InvocationID} - close SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.71.206:9101 remote=/10.233.71.46:59452], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 417 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/REPRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5477]@2021-09-27T04:27:40.417974Z 2021-09-27 04:27:40 417 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@266f3a78 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/REPRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5477]@2021-09-27T04:27:40.417996Z 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@2da7f7be startThread=0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - doClose SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=-,flush=-,to=15/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@266f3a78 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5477]@2021-09-27T04:27:40.418163Z 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5477]@2021-09-27T04:27:40.418069Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@49772baa{l=/10.233.71.206:9101,r=/10.233.71.46:59452,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-24] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5478]@2021-09-27T04:27:40.418203Z tryProduce true 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Ignoring key update for cancelled key SocketChannelEndPoint@49772baa{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=1/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >c.onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close(null) DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - onClose FillInterest@4caa6603{SSLC.NBReadCB@3d29d455{SslConnection@3d29d455::SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Wakeup ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=1 updates=0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillable SslConnection@3d29d455::SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@604b7b4a{null} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - FillInterest@604b7b4a{null} lost race null 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@37a743a8 startThread=0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/0 selected 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 0 updates 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - onClose FillInterest@604b7b4a{null} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 0 keys 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@18de16d3 waiting 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@2da7f7be in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=1}] 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@2da7f7be size 1 > capacity 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@2da7f7be in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=2,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@37a743a8 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-27] invocationID:{InvocationID} - onClose HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-25] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-27] invocationID:{InvocationID} - onClose SslConnection@3d29d455::SocketChannelEndPoint@49772baa{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@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 418 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@37a743a8 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@fe51b79::DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000} onFillable exit HttpChannelState@d3abc50{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:40 418 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@3d29d455{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@7de0ec26{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=16/30000}=>HttpConnection@fe51b79[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@47529e0a{s=START}]=>HttpChannelOverHttp@78e24899{s=HttpChannelState@d3abc50{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-27 04:27:40 419 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@19da7b18 size 1 > capacity 2021-09-27 04:27:40 419 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@19da7b18 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:44 833 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@1376932b] obtained in 0 millis 2021-09-27 04:27:44 833 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@6a4d41d2, maxRows=0, fetchSize=0, flags=16 2021-09-27 04:27:44 833 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Bind(stmt=S_1,portal=null) 2021-09-27 04:27:44 833 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-27 04:27:44 833 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Sync 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE BindComplete [unnamed] 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE DataRow(len=51) 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE CommandStatus(SELECT 1) 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-27 04:27:44 835 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - statement:[/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY] took 1 millis 2021-09-27 04:27:44 835 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 2 2021-09-27 04:27:44 835 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getInt columnIndex: 3 2021-09-27 04:27:44 835 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getLong columnIndex: 4 2021-09-27 04:27:44 835 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@1376932b] released 2021-09-27 04:27:44 835 INFO [org.onap.holmes.rulemgt.RuleAllocator][RuleAllocatorTimer] invocationID:{InvocationID} - There are 1 engine instance(s) running currently. 2021-09-27 04:27:44 835 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@46d489da] obtained in 0 millis 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@2ee71dcc, maxRows=0, fetchSize=0, flags=16 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Bind(stmt=S_2,portal=null) 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-27 04:27:44 835 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Sync 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE BindComplete [unnamed] 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE DataRow(len=18) 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE CommandStatus(SELECT 1) 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-27 04:27:44 837 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - statement:[/* EngineEntityDao.getLegacyEngines */ SELECT DISTINCT(ENGINEINSTANCE) FROM APLUS_RULE] took 1 millis 2021-09-27 04:27:44 837 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 1 2021-09-27 04:27:44 837 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@46d489da] released 2021-09-27 04:27:44 837 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@480fb3ad] obtained in 0 millis 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@54ee600a, maxRows=0, fetchSize=0, flags=16 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Bind(stmt=S_4,portal=null,$1=<'holmes-engine-mgmt'>,type=VARCHAR) 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-27 04:27:44 837 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Sync 2021-09-27 04:27:44 838 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE BindComplete [unnamed] 2021-09-27 04:27:44 838 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE DataRow(len=3,966) 2021-09-27 04:27:44 838 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE CommandStatus(SELECT 1) 2021-09-27 04:27:44 838 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-27 04:27:44 838 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - statement:[/* CorrelationRuleDao.queryRuleByEngineInstance */ SELECT * FROM APLUS_RULE WHERE engineinstance=?] took 1 millis 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 2 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 1 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 4 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getInt columnIndex: 5 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getInt columnIndex: 6 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 7 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 8 2021-09-27 04:27:44 838 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 9 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 11 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getObject columnIndex: 13 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 14 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 15 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 17 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 3 2021-09-27 04:27:44 839 TRACE [org.postgresql.jdbc.PgConnection][RuleAllocatorTimer] invocationID:{InvocationID} - getString columnIndex: 16 2021-09-27 04:27:44 839 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@480fb3ad] released 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@14b2fb53[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718]] on ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/0 selected 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - update Accept@14b2fb53[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718]] 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - queue Accept@14b2fb53[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718]] startThread=0 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 976 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - run Accept@14b2fb53[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-26] invocationID:{InvocationID} - SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-26] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@5536e127 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-26] invocationID:{InvocationID} - new HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@19ef0647{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - New HTTP Connection HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@2803222 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - onOpen SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - onOpen HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - fillInterested HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@6e3506a6{AC.ReadCB@c107b51{HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@6d273860{SSLC.NBReadCB@633cd10b{SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@68160846 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:44 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Created SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 2 updates 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 2 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - ran Accept@14b2fb53[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@2803222 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@68160846 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5478]@2021-09-27T04:27:44.978649Z 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@18de16d3 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5478]@2021-09-27T04:27:44.978695Z 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@68bdbbd0 startThread=0 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@68bdbbd0 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@18de16d3 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5478]@2021-09-27T04:27:44.978796Z 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@68bdbbd0 started 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@68bdbbd0 waiting 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-24] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5478]@2021-09-27T04:27:44.978763Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5479]@2021-09-27T04:27:44.978857Z tryProduce true 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - fillable FillInterest@6d273860{SSLC.NBReadCB@633cd10b{SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 978 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >c.onFillable SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - onFillable SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - fillable FillInterest@6e3506a6{AC.ReadCB@c107b51{HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@19ef0647{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >fill SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 261 HeapByteBuffer@6bf2e081[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03\xA9\x05U0\xA9\x02\xE6;\rv\xFa\xDcA\x15...4\x93\xA6\x8a\x13\xDa\xC5\x05\xC6\x12\xF46\xBe\xD2\x85y7\xB3(\x95t\x0fx>>>\xFbH!v\x81\xD4D\xF0!...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=261 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill starting handshake SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >flush SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:44 979 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 6 HeapByteBuffer@6bf2e081[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x00\xFc\x03\x03\xA9\x05U0...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=6 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[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-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >fill SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 367 HeapByteBuffer@6bf2e081[p=0,l=367,c=17408,r=367]={<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\xA9\x05U0\xA9\x02\xE6;\rv\xFa\xDcA\x15...\\\x8b\tE\x0e\x03r\x172\xCa!t\x0c|X\xEeF3|e\x1a\xA9\xEe>>>y\xAbK\xDc\xEa\xDa.vo...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=367 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 980 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:44 983 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-24] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@5536e127 2021-09-27 04:27:44 985 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:44 985 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >flush SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=8/30000} filled 0 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=9/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=9/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=9/30000} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - fillInterested HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=9/30000} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - interested FillInterest@6e3506a6{AC.ReadCB@c107b51{HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - interested FillInterest@6d273860{SSLC.NBReadCB@633cd10b{SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@68160846 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:44 986 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@19ef0647{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@266f3a78 size 1 > capacity 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@68160846 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@266f3a78 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:59718], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 987 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5479]@2021-09-27T04:27:44.987643Z 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@68bdbbd0 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5479]@2021-09-27T04:27:44.9877Z 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@61b45ae3 startThread=0 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@61b45ae3 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@61b45ae3 started 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@61b45ae3 waiting 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@68bdbbd0 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5479]@2021-09-27T04:27:44.987923Z 2021-09-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5479]@2021-09-27T04:27:44.987848Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 987 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5480]@2021-09-27T04:27:44.987977Z tryProduce true 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@6d273860{SSLC.NBReadCB@633cd10b{SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >c.onFillable SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillable SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@6e3506a6{AC.ReadCB@c107b51{HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@19ef0647{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >fill SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - filled 230 HeapByteBuffer@6bf2e081[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005\xB2}[3a\\\xF7\x00\x85\xAa\xFci\x01|\x8cjx\x01[\xF2...~\x8aF\x19\xE0\\i\x9b\xE1\xE3,s\xCe\xDbS\xBc\x9f\x9bPp\xA9bu>>>\x05\x15\xD3&^\xB7`T\x90...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - net filled=230 2021-09-27 04:27:44 988 DEBUG [jdk.event.security][dw-23] invocationID:{InvocationID} - TLSHandshake: 10.233.71.46:59718, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-27 04:27:44 988 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#R\x9bc\x1a...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - handshake succeeded SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\x95(\xA78\x13\xE9\xF4<<<\x17\x03\x03\x00\xA7\x14`G\x00\xFc\x89\xD0r\xCd,WG\xDc]|\x1e\x84\xE1_/...~\x8aF\x19\xE0\\i\x9b\xE1\xE3,s\xCe\xDbS\xBc\x9f\x9bPp\xA9bu>>>\x05\x15\xD3&^\xB7`T\x90...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] 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@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-F\x17\xF3\xA4b\x18\xB2\xAc...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-F\x17\xF3\xA4b\x18\xB2\xAc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@c107b51[p=HttpParser{s=START,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000} filled 150 HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-F\x17\xF3\xA4b\x18\xB2\xAc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000} parse HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-F\x17\xF3\xA4b\x18\xB2\xAc...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>-F\x17\xF3\xA4b\x18\xB2\xAc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - START --> SPACE1 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - URI --> SPACE2 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - REQUEST for //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.71.206:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - handle //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - handling HttpChannelState@19ef0647{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-23] invocationID:{InvocationID} - Host 10.233.71.206 with SNI null 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.Server][dw-23] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-23] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@15190a5 in null 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-23] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-23] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - chain=customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - call filter customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-27 04:27:44 989 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Entering. 2021-09-27 04:27:44 989 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-27 04:27:44 989 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 42016f84-8776-4668-bdaf-af46cb670374 2021-09-27 04:27:44 989 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-27 04:27:44 989 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@15190a5 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@5eb2c60d exclude no deflater 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@4cbac062[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@f1af854{null} 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 200 OK HTTP/1.1 Connection: close Date: Mon, 27 Sep 2021 04:27:44 GMT X-TransactionID: 42016f84-8776-4668-bdaf-af46cb670374 X-InvocationID: fa9d92e9-e4cb-44e4-97a8-fde45ce1f3ab Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@2c395aa[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a09b951] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@4cbac062[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-27 04:27:44 990 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Mon, 27 Sep 2021 04:27:44 GMT X-TransactionID: 42016f84-8776-4668-bdaf-af46cb670374 X-InvocationID: fa9d92e9-e4cb-44e4-97a8-fde45ce1f3ab Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@2c395aa[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a09b951] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@50aad9a2{IDLE}->null [HeapByteBuffer@32fa4450[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@4cbac062[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-27 04:27:44 990 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@50aad9a2{WRITING}->null:IDLE-->WRITING 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=COMPLETING}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-27 04:27:44 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@32fa4450[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-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@4cbac062[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-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - 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-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=COMPLETING}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=COMPLETING}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@50aad9a2{WRITING}->null 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@50aad9a2{IDLE}->null:WRITING-->IDLE 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@2c395aa[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a09b951] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@2c395aa[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4a09b951] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=4/30000} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=4/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} oshut=false, ishut=false 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=4/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - 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-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@6d273860{SSLC.NBReadCB@633cd10b{SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2}}} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@68160846 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:44 992 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=45e5fa8d-bdcb-4373-ad00-f8dc2d5e2338, referenceCounter=0, store size=0} on thread dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:44 992 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Exiting. 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@68160846 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.Server][dw-23] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - unhandle HttpChannelState@19ef0647{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@19ef0647{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - completed HttpChannelState@19ef0647{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@6170232a{s=END}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - unhandle HttpChannelState@19ef0647{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@19ef0647{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - recycle HttpChannelState@19ef0647{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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} 10.233.71.46 - - [27/Sep/2021:04:27:44 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 3 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >fill SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - filled 24 HeapByteBuffer@6bf2e081[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13\xF3Eb\xA9\x9b\xCf\xB2\x99d\xFe\xD9\x86K\xC2L\xF2\xB2\xC8\x8a>>>|/US\x99?\x82\xC7\xD0...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - net filled=24 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.71.206:9101 remote=/10.233.71.46:59718], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@633cd10b{NEED_UNWRAP,eio=24/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=5/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 992 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=6/30000} filled -1 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close(null) DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - shutdownOutput: SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 992 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5480]@2021-09-27T04:27:44.993028Z 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - ensureFillInterested SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@61b45ae3 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5480]@2021-09-27T04:27:44.993087Z 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@72433819 startThread=0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - doClose SocketChannelEndPoint@4a57b05c{l=/10.233.71.206:9101,r=/10.233.71.46:59718,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=/10.233.71.206:9101,r=/10.233.71.46:59718,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@61b45ae3 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5480]@2021-09-27T04:27:44.993208Z 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-20] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5480]@2021-09-27T04:27:44.993276Z tryProduce true 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - onClose FillInterest@6d273860{SSLC.NBReadCB@633cd10b{SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@72433819 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@72433819 started 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillableFail SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5480]@2021-09-27T04:27:44.993241Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - fillable FillInterest@6d273860{null} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - FillInterest@6d273860{null} lost race null 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@68bdbbd0 size 1 > capacity 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@68bdbbd0 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=1}] 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - Ignoring key update for cancelled key SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - onFail FillInterest@6e3506a6{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Wakeup ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=1 updates=0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@8aa53bb startThread=0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - onClose FillInterest@6e3506a6{null} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@8aa53bb in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=1}] 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - close SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000} onFillable exit HttpChannelState@19ef0647{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@18de16d3 size 1 > capacity 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@18de16d3 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=1}] 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-20] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-25] invocationID:{InvocationID} - onClose HttpConnection@c107b51::DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=6/30000} 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/0 selected 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 0 updates 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 0 keys 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-25] invocationID:{InvocationID} - onClose SslConnection@633cd10b::SocketChannelEndPoint@4a57b05c{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@633cd10b{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@6ecd8076{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}=>HttpConnection@c107b51[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@6170232a{s=START}]=>HttpChannelOverHttp@71efee27{s=HttpChannelState@19ef0647{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-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@8aa53bb in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:44 993 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@72433819 waiting 2021-09-27 04:27:49 885 TRACE [org.skife.jdbi.v2.DBI][EngineInstanceController] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@4624ca07] obtained in 0 millis 2021-09-27 04:27:49 885 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@31814b4c, maxRows=0, fetchSize=0, flags=16 2021-09-27 04:27:49 885 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - FE=> Bind(stmt=S_1,portal=null) 2021-09-27 04:27:49 885 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-09-27 04:27:49 885 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - FE=> Sync 2021-09-27 04:27:49 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE BindComplete [unnamed] 2021-09-27 04:27:49 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE DataRow(len=51) 2021-09-27 04:27:49 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE CommandStatus(SELECT 1) 2021-09-27 04:27:49 887 TRACE [org.postgresql.core.v3.QueryExecutorImpl][EngineInstanceController] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-09-27 04:27:49 887 TRACE [org.skife.jdbi.v2.DBI][EngineInstanceController] invocationID:{InvocationID} - statement:[/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY] took 1 millis 2021-09-27 04:27:49 887 TRACE [org.postgresql.jdbc.PgConnection][EngineInstanceController] invocationID:{InvocationID} - getString columnIndex: 2 2021-09-27 04:27:49 887 TRACE [org.postgresql.jdbc.PgConnection][EngineInstanceController] invocationID:{InvocationID} - getInt columnIndex: 3 2021-09-27 04:27:49 887 TRACE [org.postgresql.jdbc.PgConnection][EngineInstanceController] invocationID:{InvocationID} - getLong columnIndex: 4 2021-09-27 04:27:49 887 TRACE [org.skife.jdbi.v2.DBI][EngineInstanceController] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@4624ca07] released 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@43735ed7[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300]] on ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=0 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@625264ed-RuleActiveApp@5bfc79cb{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=0 selected=0 updates=1 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/0 selected 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - update Accept@43735ed7[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300]] 2021-09-27 04:27:54 976 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - queue Accept@43735ed7[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300]] startThread=0 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - run Accept@43735ed7[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-26] invocationID:{InvocationID} - SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-26] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@4ed9288e 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-26] invocationID:{InvocationID} - new HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@4265923e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - New HTTP Connection HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@60bcdb25 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - onOpen SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - onOpen HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - fillInterested HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000} 2021-09-27 04:27:54 977 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@5f7140b5{AC.ReadCB@3568d910{HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@5912cd8d{SSLC.NBReadCB@e26516e{SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@65035ae0 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=2 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Created SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 2 updates 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updateable 2 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x00000001005f7c40@60bcdb25 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@65035ae0 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - ran Accept@43735ed7[java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300]] in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 978 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 979 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5481]@2021-09-27T04:27:54.979071Z 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@72433819 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5481]@2021-09-27T04:27:54.979124Z 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@34422213 startThread=0 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@72433819 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5481]@2021-09-27T04:27:54.979236Z 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-20] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5481]@2021-09-27T04:27:54.979208Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 979 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-27] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5482]@2021-09-27T04:27:54.979279Z tryProduce true 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:54 979 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - fillable FillInterest@5912cd8d{SSLC.NBReadCB@e26516e{SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 979 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 979 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >c.onFillable SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - onFillable SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=11/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=11/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - fillable FillInterest@5f7140b5{AC.ReadCB@3568d910{HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=11/30000}}} 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=11/30000} onFillable enter HttpChannelState@4265923e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@34422213 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >fill SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=11/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=11/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@34422213 started 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 261 HeapByteBuffer@6bf2e081[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03\x1ed\x98\xF2\xA2%\xB0\xAe3>\xE5\xB3\xFe\xDa...\x05\x85X\x01\xBe\xF8<\xBa_6N=\x1c]S\x99F\xFe\x0f,\x19\x00\x1f>>>k9$\xA8\x16\xD8\xFc\xFa_...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@34422213 waiting 2021-09-27 04:27:54 989 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=261 2021-09-27 04:27:54 990 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill starting handshake SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=11/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:54 991 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:54 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:54 992 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >flush SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:54 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:54 993 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=16/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 373 HeapByteBuffer@6bf2e081[p=0,l=373,c=17408,r=373]={<<<\x14\x03\x03\x00\x01\x01\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\x1ed\x98\xF2\xA2%\xB0\xAe...4\x07\x10\xA8\x82b{u\x94\xD6\xF1\xFbdio\xA8|\x8d\x90e!\x08\x1b>>>.volte.sc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=373 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - unwrap net_filled=373 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=373,c=17408,r=367] unwrapBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=6,l=373,c=17408,r=367]={\x14\x03\x03\x00\x01\x01<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\x1ed\x98\xF2\xA2%\xB0\xAe3>\xE5\xB3\xFe\xDa...4\x07\x10\xA8\x82b{u\x94\xD6\xF1\xFbdio\xA8|\x8d\x90e!\x08\x1b>>>.volte.sc...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:54 994 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:54 995 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 367 bytesProduced = 0 encryptedBuffer=[p=373,l=373,c=17408,r=0] unwrapBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:54 995 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_TASK 2021-09-27 04:27:54 997 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_868,869,450412593) 2021-09-27 04:27:54 997 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_868,869,450412593) has been shutdown 2021-09-27 04:27:55 000 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_865,866,1827533710) 2021-09-27 04:27:55 000 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_865,866,1827533710) has been shutdown 2021-09-27 04:27:55 002 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_867,868,1054685925) 2021-09-27 04:27:55 002 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_867,868,1054685925) has been shutdown 2021-09-27 04:27:55 004 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - Shutdown ServiceLocator ServiceLocatorImpl(__HK2_Generated_866,867,1892130441) 2021-09-27 04:27:55 004 DEBUG [org.jvnet.hk2.logger][Finalizer] invocationID:{InvocationID} - ServiceLocator ServiceLocatorImpl(__HK2_Generated_866,867,1892130441) has been shutdown 2021-09-27 04:27:55 005 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-20] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@4ed9288e 2021-09-27 04:27:55 007 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_WRAP 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >flush SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=13/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - flushed 2686 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x14\x03\x03\x00\x01\x01\x16\x03\x03...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >fill SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=30/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:55 008 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=0,l=0,c=17408,r=0]={<<<>>>\x14\x03\x03\x00\x01\x01\x16\x03\x03...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=31/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=31/30000} filled 0 HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=31/30000} parse HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.http.HttpParser][dw-20] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=31/30000} parsed false HttpParser{s=START,0 of -1} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=31/30000} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-20] invocationID:{InvocationID} - fillInterested HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=31/30000} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - interested FillInterest@5f7140b5{AC.ReadCB@3568d910{HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.FillInterest][dw-20] invocationID:{InvocationID} - interested FillInterest@5912cd8d{SSLC.NBReadCB@e26516e{SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-20] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@65035ae0 on ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=0 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-20] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@6f2d3391{STARTED} id=0 keys=1 selected=0 updates=1 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-20] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@4265923e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken with none selected 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 0/0/1 selected 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 0 keys, 1 updates 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 1 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x00000001005c1040@65035ae0 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-20] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-20] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@61b45ae3 size 1 > capacity 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-20] invocationID:{InvocationID} - ran ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@61b45ae3 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}] 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:55 009 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 woken up from select, 1/1/1 selected 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 processing 1 keys, 0 updates 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.71.206:9101 remote=/10.233.71.46:60300], selector=sun.nio.ch.EPollSelectorImpl@6479cbd9, interestOps=1, readyOps=1 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0} tryExecute EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=0}][pc=0,pic=0,pec=7,epc=5482]@2021-09-27T04:27:55.010278Z 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=0}@34422213 offer EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=0}][pc=0,pic=0,pec=7,epc=5482]@2021-09-27T04:27:55.010329Z 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1} startReservedThread p=1 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - queue ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@6ca3e381 startThread=0 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@34422213 task=EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5482]@2021-09-27T04:27:55.010436Z 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-27] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}][pc=0,pic=0,pec=7,epc=5482]@2021-09-27T04:27:55.010411Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run ReservedThreadExecutor@7d484fcd{s=0/1,p=1}@6ca3e381 in InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=0/1,p=1}] 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=1}@6ca3e381 started 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-24] invocationID:{InvocationID} - EatWhatYouKill@49c83262/SelectorProducer@1573e8a5/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@4f1afe8f{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@7d484fcd{s=1/1,p=1}][pc=0,pic=0,pec=7,epc=5483]@2021-09-27T04:27:55.010503Z tryProduce true 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 0 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@7d484fcd{s=1/1,p=0}@6ca3e381 waiting 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - fillable FillInterest@5912cd8d{SSLC.NBReadCB@e26516e{SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >c.onFillable SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@6479cbd9 waiting with 1 keys 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - onFillable SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - fillable FillInterest@5f7140b5{AC.ReadCB@3568d910{HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@4265923e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >fill SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 230 HeapByteBuffer@6bf2e081[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x0052\xC9DZ$U1\x9a\x9e\x99y\xE5\xF0\xE7\xD6w\xB2\xF9\x0e\x8c...\xE3\xFc\x1e\\?\xCa\xB1\x12\xA0\xB1\xE3\xA5\xAa\xFdg\xB7\xA3\xD1\x19\x80\xC4\xD2\xF9>>>C\x13\x01\xAa\xD1\xE5?\x9a\x9d...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 010 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=230 2021-09-27 04:27:55 011 DEBUG [jdk.event.security][dw-27] invocationID:{InvocationID} - TLSHandshake: 10.233.71.46:60300, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#I\x82\xA3\x05...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - handshake succeeded SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 0 HeapByteBuffer@6bf2e081[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...!\xA1\xDbR&\xD5k<<<\x17\x03\x03\x00\xA7\x80\x92\xB9\xC4\xE2\x1fq\xBdd@-\xAbpySB\xBb\x973\x0e...\xE3\xFc\x1e\\?\xCa\xB1\x12\xA0\xB1\xE3\xA5\xAa\xFdg\xB7\xA3\xD1\x19\x80\xC4\xD2\xF9>>>C\x13\x01\xAa\xD1\xE5?\x9a\x9d...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=0 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>D\x9d\xD7w\xD2\xA7\xA4$\x1f...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>D\x9d\xD7w\xD2\xA7\xA4$\x1f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@3568d910[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2c22bc78{s=START}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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-27 04:27:55 011 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000} filled 150 HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>D\x9d\xD7w\xD2\xA7\xA4$\x1f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000} parse HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>D\x9d\xD7w\xD2\xA7\xA4$\x1f...\x00\x00\x00\x00\x00\x00\x00} {} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@4aa4f883[p=0,l=150,c=17408,r=150]={<< >>D\x9d\xD7w\xD2\xA7\xA4$\x1f...\x00\x00\x00\x00\x00\x00\x00} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - START --> SPACE1 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - SPACE1 --> URI 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - URI --> SPACE2 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER --> CONTENT 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - REQUEST for //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.71.206:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-09-27 04:27:55 011 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@3568d910::DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - handle //10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - handling HttpChannelState@4265923e{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-27] invocationID:{InvocationID} - Host 10.233.71.206 with SNI null 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.Server][dw-27] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-27] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@57095474 in null 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-27] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-27] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@6a9b9909{/,null,AVAILABLE} 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - chain=customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - call filter customFilter@2db86a7c==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-09-27 04:27:55 012 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Entering. 2021-09-27 04:27:55 012 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-09-27 04:27:55 012 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: f65327e9-434a-4b32-89b7-3484694507be 2021-09-27 04:27:55 012 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Invoking synchronously ... 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-1a1c21b4@1a1c21b4==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17ff8810@17ff8810==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-09-27 04:27:55 012 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-26f0141@f34fb0c2==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2484dbb7{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck)@57095474 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@488cbae8 exclude no deflater 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@63b0c426[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@107c9c3a{null} 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 200 OK HTTP/1.1 Connection: close Date: Mon, 27 Sep 2021 04:27:55 GMT X-TransactionID: f65327e9-434a-4b32-89b7-3484694507be X-InvocationID: cdb6ef5a-61cb-4989-acfa-4559cacd65f4 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@dcbc0b5[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20bd601e] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@63b0c426[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-27 04:27:55 013 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Mon, 27 Sep 2021 04:27:55 GMT X-TransactionID: f65327e9-434a-4b32-89b7-3484694507be X-InvocationID: cdb6ef5a-61cb-4989-acfa-4559cacd65f4 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@dcbc0b5[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20bd601e] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@45c901db{IDLE}->null [HeapByteBuffer@32fa4450[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@63b0c426[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-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@45c901db{WRITING}->null:IDLE-->WRITING 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=COMPLETING}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@32fa4450[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-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@63b0c426[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-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-09-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - 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-27 04:27:55 013 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=COMPLETING}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=2} 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=W,to=4/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=COMPLETING}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@45c901db{WRITING}->null 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@45c901db{IDLE}->null:WRITING-->IDLE 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@dcbc0b5[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20bd601e] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@dcbc0b5[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@20bd601e] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=4/30000} 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=4/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} oshut=false, ishut=false 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@35e9f270[p=0,l=0,c=0,r=0]={<<<>>>} 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - 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-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-09-27 04:27:55 014 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-09-27 04:27:55 015 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-27 04:27:55 015 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-27 04:27:55 015 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@5912cd8d{SSLC.NBReadCB@e26516e{SslConnection@e26516e::SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4}}} 2021-09-27 04:27:55 015 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@81f0f1d{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@e26516e{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@32721a88{l=/10.233.71.206:9101,r=/10.233.71.46:60300,OSHUTTING,fill=-,flush=-,to=5/30000}=>HttpConnection@3568d910[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@2c22bc78{s=END}]=>HttpChannelOverHttp@1a69fd0d{s=HttpChannelState@4265923e{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.71.206:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-09-27 04:27:55 015 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{In