By type
at org.onap.holmes.common.config.MicroServiceConfig.execQuery(MicroServiceConfig.java:80) at org.onap.holmes.common.config.MicroServiceConfig.getServiceConfigInfoFromCBS(MicroServiceConfig.java:88) at org.onap.holmes.common.dcae.DcaeConfigurationQuery.getDcaeConfigurations(DcaeConfigurationQuery.java:27) at org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling.run(DcaeConfigurationPolling.java:63) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.base/java.util.concurrent.FutureTask.runAndReset(Unknown Source) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.base/java.lang.Thread.run(Unknown Source) 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) ... 23 common frames omitted 2021-08-25 07:23:22 762 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-08-25 07:23:22 763 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-08-25 07:23:22 766 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-08-25 07:23:22 767 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-08-25 07:23:22 776 TRACE [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - Proxy used: DIRECT 2021-08-25 07:23:22 777 DEBUG [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - sun.net.www.MessageHeader@65c0a2f15 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-08-25 07:23:22 797 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-08-25 07:23:22 797 DEBUG [sun.net.www.protocol.http.HttpURLConnection][pool-2-thread-1] invocationID:{InvocationID} - sun.net.www.MessageHeader@384f04325 pairs: {null: HTTP/1.1 200 OK}{x-onap-requestid: 7bd0bb0c-c552-4585-9ed4-7c4dc36a4693}{Content-Type: application/json}{Content-Length: 4153}{Date: Wed, 25 Aug 2021 07:23:22 GMT} 2021-08-25 07:23:22 798 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-08-25 07:23:22 801 DEBUG [org.apache.http.client.protocol.RequestAddCookies][pool-2-thread-1] invocationID:{InvocationID} - CookieSpec selected: default 2021-08-25 07:23:22 801 DEBUG [org.apache.http.client.protocol.RequestAuthCache][pool-2-thread-1] invocationID:{InvocationID} - Auth cache not set in the context 2021-08-25 07:23:22 801 DEBUG [org.apache.http.impl.conn.PoolingHttpClientConnectionManager][pool-2-thread-1] invocationID:{InvocationID} - Connection request: [route: {s}->https://127.0.0.1:9101][total kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 200] 2021-08-25 07:23:22 801 DEBUG [org.apache.http.impl.conn.PoolingHttpClientConnectionManager][pool-2-thread-1] invocationID:{InvocationID} - Connection leased: [id: 31][route: {s}->https://127.0.0.1:9101][total kept alive: 0; route allocated: 1 of 2; total allocated: 1 of 200] 2021-08-25 07:23:22 801 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Opening connection {s}->https://127.0.0.1:9101 2021-08-25 07:23:22 801 DEBUG [org.apache.http.impl.conn.DefaultHttpClientConnectionOperator][pool-2-thread-1] invocationID:{InvocationID} - Connecting to /127.0.0.1:9101 2021-08-25 07:23:22 801 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Connecting socket to /127.0.0.1:9101 with timeout 30000 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@7312a117[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340]] on ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=0 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=1 2021-08-25 07:23:22 802 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Enabled protocols: [SSLv3, TLSv1, TLSv1.2] 2021-08-25 07:23:22 802 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Enabled cipher suites:[TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_DSS_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_DSS_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_RSA_WITH_AES_256_CBC_SHA256, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, TLS_DHE_DSS_WITH_AES_256_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_DSS_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_EMPTY_RENEGOTIATION_INFO_SCSV] 2021-08-25 07:23:22 802 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Starting handshake 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update Accept@7312a117[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340]] 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - queue Accept@7312a117[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340]] startThread=0 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - run Accept@7312a117[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-26] invocationID:{InvocationID} - SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->
idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-08-25 07:23:22 802 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-26] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@107bbc51 2021-08-25 07:23:22 803 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-26] invocationID:{InvocationID} - new HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=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@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:22 803 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - New HTTP Connection HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:22 803 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@54552b02 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:22 803 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 803 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - onOpen SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 803 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - onOpen HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:22 804 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - fillInterested HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000} 2021-08-25 07:23:22 804 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@4022fcc{AC.ReadCB@6c3bcb0a{HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:22 804 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 804 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 804 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@79f21975{SSLC.NBReadCB@6cf45339{SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:22 804 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@3751f0e9 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=2 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 2 updates 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 2 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@54552b02 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@3751f0e9 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Created SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - ran Accept@7312a117[java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=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-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1695]@2021-08-25T07:23:22.805913Z 2021-08-25 07:23:22 805 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@273fa7a7 offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1695]@2021-08-25T07:23:22.80598Z 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@7836590 startThread=0 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@273fa7a7 task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1695]@2021-08-25T07:23:22.806095Z 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-24] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1695]@2021-08-25T07:23:22.806163Z tryProduce true 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-25] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1695]@2021-08-25T07:23:22.806219Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=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-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - fillable FillInterest@79f21975{SSLC.NBReadCB@6cf45339{SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >c.onFillable SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - onFillable SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - fillable FillInterest@4022fcc{AC.ReadCB@6c3bcb0a{HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >fill SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 319 HeapByteBuffer@42227ca6[p=0,l=319,c=17408,r=319]={<<<\x16\x03\x03\x01:\x01\x00\x016\x03\x03T\x10I2\x19M\x14\xC9\xAc\x7f\xD1\x9b\x98W...\t\x00\x07\x02\x00\x04\x00\x00\x00\x00\x00\x17\x00\x00\x00+\x00\x05\x04\x03\x03\x03\x01>>>[Q\xBb\x17E\xF9\xDc\x82\xBe...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=319 2021-08-25 07:23:22 806 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill starting handshake SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=319/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 807 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@7836590 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:22 807 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@7836590 started 2021-08-25 07:23:22 807 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@7836590 waiting 2021-08-25 07:23:22 807 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - unwrap net_filled=319 Status = OK HandshakeStatus = NEED_TASK bytesConsumed = 319 bytesProduced = 0 encryptedBuffer=[p=319,l=319,c=17408,r=0] unwrapBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 807 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >flush SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 90 sequenceNumber = 0 [p=0,l=90,c=17408,r=90] ioDone=false/false 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - flushed 90 SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_WRAP bytesConsumed = 0 bytesProduced = 6 sequenceNumber = 1 [p=0,l=6,c=17408,r=6] ioDone=false/false 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:22 808 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 45 sequenceNumber = 0 [p=0,l=45,c=17408,r=45] ioDone=false/false 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - flushed 45 SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@6cf45339{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 0 HeapByteBuffer@42227ca6[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01:\x01\x00\x016...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >fill SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 0 HeapByteBuffer@42227ca6[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01:\x01\x00\x016...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000} filled 0 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 809 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000} parsed false HttpParser{s=START,0 of -1} 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000} 2021-08-25 07:23:22 809 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - Secure session established 2021-08-25 07:23:22 810 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - negotiated protocol: TLSv1.2 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-25] invocationID:{InvocationID} - fillInterested HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000} 2021-08-25 07:23:22 810 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - negotiated cipher suite: TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - interested FillInterest@4022fcc{AC.ReadCB@6c3bcb0a{HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 810 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - peer principal: C=US, O=ONAP, OU=OSAAF, OU=holmes-rule-mgmt@holmes-rule-mgmt.onap.org:DEV, CN=holmes-rule-mgmt 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 810 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - peer alternative names: [mark.d.manager@people.osaaf.com, holmes-rule-mgmt, holmes-rule-mgmt.api.simpledemo.onap.org, holmes-rule-mgmt.onap] 2021-08-25 07:23:22 810 DEBUG [org.apache.http.conn.ssl.SSLConnectionSocketFactory][pool-2-thread-1] invocationID:{InvocationID} - issuer principal: CN=intermediateCA_9, OU=OSAAF, O=ONAP, C=US 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - interested FillInterest@79f21975{SSLC.NBReadCB@6cf45339{SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:22 810 DEBUG [org.apache.http.impl.conn.DefaultHttpClientConnectionOperator][pool-2-thread-1] invocationID:{InvocationID} - Connection established 127.0.0.1:43340<->127.0.0.1:9101 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@3751f0e9 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:22 810 DEBUG [org.apache.http.impl.conn.DefaultManagedHttpClientConnection][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31: set socket timeout to 30000 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@3751f0e9 2021-08-25 07:23:22 810 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Executing request GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1 2021-08-25 07:23:22 810 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Target auth state: UNCHALLENGED 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:22 810 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Proxy auth state: UNCHALLENGED 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:22 810 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@64e7e2e size 1 > capacity 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/127.0.0.1:9101 remote=/127.0.0.1:43340], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@64e7e2e in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 811 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=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-08-25 07:23:22 811 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> Content-Type: application/json 2021-08-25 07:23:22 811 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> Host: 127.0.0.1:9101 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1696]@2021-08-25T07:23:22.811242Z 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@7836590 offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1696]@2021-08-25T07:23:22.811294Z 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:22 811 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> Connection: Keep-Alive 2021-08-25 07:23:22 811 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> User-Agent: Apache-HttpClient/4.5.10 (Java/11.0.6) 2021-08-25 07:23:22 811 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> Accept-Encoding: gzip,deflate 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@27efaa95 startThread=0 2021-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@27efaa95 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@27efaa95 started 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@27efaa95 waiting 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-24] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1696]@2021-08-25T07:23:22.811398Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=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-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "Content-Type: application/json[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "Host: 127.0.0.1:9101[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - fillable FillInterest@79f21975{SSLC.NBReadCB@6cf45339{SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "Connection: Keep-Alive[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "User-Agent: Apache-HttpClient/4.5.10 (Java/11.0.6)[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "Accept-Encoding: gzip,deflate[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 >> "[\r][\n]" 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >c.onFillable SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - onFillable SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - fillable FillInterest@4022fcc{AC.ReadCB@6c3bcb0a{HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >fill SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 811 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 287 HeapByteBuffer@42227ca6[p=0,l=287,c=17408,r=287]={<<<\x14\x03\x03\x00\x01\x01\x16\x03\x03\x00(\x00\x00\x00\x00\x00\x00\x00\x00\xF0W\x80\x1dO\x17...+\xA7\xAa\x1c\xAc\xF4\xC3,\x0c$@I \xAb~\x12\x13kR\x1b\xB2\xBd\x00>>>\x02\x03\x02\x01\x02\x02\x00\x11\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=287 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@7836590 task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:22.81202Z 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - unwrap net_filled=287 Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 6 bytesProduced = 0 encryptedBuffer=[p=6,l=287,c=17408,r=281] unwrapBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 0 HeapByteBuffer@42227ca6[p=6,l=287,c=17408,r=281]={\x14\x03\x03\x00\x01\x01<<<\x16\x03\x03\x00(\x00\x00\x00\x00\x00\x00\x00\x00\xF0W\x80\x1dO\x17[%1\xBa3e...+\xA7\xAa\x1c\xAc\xF4\xC3,\x0c$@I \xAb~\x12\x13kR\x1b\xB2\xBd\x00>>>\x02\x03\x02\x01\x02\x02\x00\x11\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:22 812 DEBUG [jdk.event.security][dw-24] invocationID:{InvocationID} - TLSHandshake: 127.0.0.1:53674, TLSv1.2, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, 0 2021-08-25 07:23:22 812 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = FINISHED bytesConsumed = 45 bytesProduced = 0 encryptedBuffer=[p=51,l=287,c=17408,r=236] unwrapBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x90`\x039...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - handshake succeeded SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=236/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} resumed server TLSv1.2/TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 0 HeapByteBuffer@42227ca6[p=51,l=287,c=17408,r=236]={\x14\x03\x03\x00\x01\x01\x16\x03\x03...@l\xA6\x93\x08>\x11<<<\x17\x03\x03\x00\xE7\x00\x00\x00\x00\x00\x00\x00\x01\x08\x8e\xF2\xE9_\x87{?\xCc\x99>\x87...+\xA7\xAa\x1c\xAc\xF4\xC3,\x0c$@I \xAb~\x12\x13kR\x1b\xB2\xBd\x00>>>\x02\x03\x02\x01\x02\x02\x00\x11\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - unwrap net_filled=0 Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 236 bytesProduced = 207 encryptedBuffer=[p=287,l=287,c=17408,r=0] unwrapBuffer=HeapByteBuffer@62f36c1[p=0,l=207,c=17408,r=207]={<< >>\x8e\x1c\x16\x82\xC5>\xF4GQ...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=207,c=17408,r=207]={<< >>\x8e\x1c\x16\x82\xC5>\xF4GQ...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=START,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=3/30000} filled 207 HeapByteBuffer@62f36c1[p=0,l=207,c=17408,r=207]={<< >>\x8e\x1c\x16\x82\xC5>\xF4GQ...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=3/30000} parse HeapByteBuffer@62f36c1[p=0,l=207,c=17408,r=207]={<< >>\x8e\x1c\x16\x82\xC5>\xF4GQ...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=207,c=17408,r=207]={<< >>\x8e\x1c\x16\x82\xC5>\xF4GQ...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - START --> SPACE1 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - SPACE1 --> URI 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - URI --> SPACE2 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Content-Type: application/json --> IN_VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Content-Type: application/json --> FIELD 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Connection: keep-alive --> IN_VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Connection: keep-alive --> FIELD 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Accept-Encoding --> IN_VALUE 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER:Accept-Encoding --> FIELD 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - HEADER --> CONTENT 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-27] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:22.813927Z tryProduce true 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:22 813 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - REQUEST for //127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule on HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=0} GET //127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule HTTP/1.1 Content-Type: application/json Host: 127.0.0.1:9101 Connection: keep-alive User-Agent: Apache-HttpClient/4.5.10 (Java/11.0.6) Accept-Encoding: gzip,deflate 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=3/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=1} 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=3/30000} 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - handle //127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=1} 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - handling HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=//127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=1} 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-24] invocationID:{InvocationID} - Host 127.0.0.1 with SNI null 2021-08-25 07:23:22 814 DEBUG [org.eclipse.jetty.server.Server][dw-24] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/rule on HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=1} 2021-08-25 07:23:22 816 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-24] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} handle Request(GET https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule)@6c5b7249 in null 2021-08-25 07:23:22 816 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-24] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/rule @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:22 816 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-24] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/rule @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:22 816 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-24] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/rule -> io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:22 816 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-24] invocationID:{InvocationID} - chain=customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:22 816 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-24] invocationID:{InvocationID} - call filter customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-08-25 07:23:22 816 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-24] invocationID:{InvocationID} - Entering. 2021-08-25 07:23:22 817 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-24] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-08-25 07:23:22 817 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-24] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 9e9efad6-b0eb-404e-92cd-df391d627fe7 2021-08-25 07:23:22 817 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-24] invocationID:{InvocationID} - Invoking synchronously ... 2021-08-25 07:23:22 817 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-24] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-08-25 07:23:22 817 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-24] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-08-25 07:23:22 817 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:22 818 TRACE [org.skife.jdbi.v2.DBI][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@675f8a6f] obtained in 0 millis 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@4de39ef4, maxRows=0, fetchSize=0, flags=16 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> CloseStatement(S_172) 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Parse(stmt=S_173,query="SELECT * FROM APLUS_RULE ",oids={}) 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Bind(stmt=S_173,portal=null) 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Describe(portal=null) 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-08-25 07:23:22 821 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE=> Sync 2021-08-25 07:23:22 822 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - <=BE CloseComplete 2021-08-25 07:23:22 822 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - <=BE ErrorMessage(ERROR: relation "aplus_rule" does not exist Position: 15 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01) 2021-08-25 07:23:22 822 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-08-25 07:23:22 823 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query SELECT * FROM APLUS_RULE 2021-08-25 07:23:22 823 TRACE [org.postgresql.core.v3.QueryExecutorImpl][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query SYNC 2021-08-25 07:23:22 823 WARN [org.onap.holmes.rulemgt.db.CorrelationRuleQueryDao][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Failed to query the rule: id =null. 2021-08-25 07:23:22 823 TRACE [org.skife.jdbi.v2.DBI][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@675f8a6f] released 2021-08-25 07:23:22 823 ERROR [org.onap.holmes.rulemgt.resources.RuleMgtResources][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - query rule failed,cause query condition conversion failure org.onap.holmes.common.exception.CorrelationException: Failed to query the rule. at org.onap.holmes.rulemgt.db.CorrelationRuleQueryDao.getCorrelationRulesByCondition(CorrelationRuleQueryDao.java:60) at org.onap.holmes.rulemgt.wrapper.RuleMgtWrapper.getCorrelationRuleByCondition(RuleMgtWrapper.java:235) at org.onap.holmes.rulemgt.resources.RuleMgtResources.getCorrelationRules(RuleMgtResources.java:135) at jdk.internal.reflect.GeneratedMethodAccessor35.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:391) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:80) at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:253) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) at org.glassfish.jersey.internal.Errors.process(Errors.java:292) at org.glassfish.jersey.internal.Errors.process(Errors.java:274) at org.glassfish.jersey.internal.Errors.process(Errors.java:244) at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:232) at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) at io.dropwizard.jetty.NonblockingServletHolder.handle(NonblockingServletHolder.java:50) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1617) at io.dropwizard.servlets.ThreadNameFilter.doFilter(ThreadNameFilter.java:35) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at io.dropwizard.jersey.filter.AllowedMethodsFilter.handle(AllowedMethodsFilter.java:47) at io.dropwizard.jersey.filter.AllowedMethodsFilter.doFilter(AllowedMethodsFilter.java:41) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.onap.holmes.common.utils.transactionid.TransactionIdFilter.doFilter(TransactionIdFilter.java:73) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:545) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1297) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1212) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at com.codahale.metrics.jetty9.InstrumentedHandler.handle(InstrumentedHandler.java:249) at io.dropwizard.jetty.ContextRoutingHandler.handle(ContextRoutingHandler.java:37) at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:54) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:173) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:500) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:270) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException: org.postgresql.util.PSQLException: ERROR: relation "aplus_rule" does not exist Position: 15 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 [statement:"SELECT * FROM APLUS_RULE ", located:"SELECT * FROM APLUS_RULE ", rewritten:"SELECT * FROM APLUS_RULE ", arguments:{ positional:{}, named:{}, finder:[]}] at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1338) at org.skife.jdbi.v2.Query.fold(Query.java:173) at org.skife.jdbi.v2.Query.list(Query.java:82) at org.skife.jdbi.v2.Query.list(Query.java:75) at org.onap.holmes.rulemgt.db.CorrelationRuleQueryDao.getCorrelationRulesByCondition(CorrelationRuleQueryDao.java:53) ... 71 common frames omitted Caused by: org.postgresql.util.PSQLException: ERROR: relation "aplus_rule" does not exist Position: 15 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2532) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2267) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:312) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:448) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:369) at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:153) at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:142) at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.apache.tomcat.jdbc.pool.StatementFacade$StatementProxy.invoke(StatementFacade.java:114) at com.sun.proxy.$Proxy81.execute(Unknown Source) at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1327) ... 75 common frames omitted 2021-08-25 07:23:22 824 DEBUG [org.glassfish.jersey.server.ServerRuntime$Responder][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Starting mapping of the exception. javax.ws.rs.WebApplicationException: HTTP 499 at org.onap.holmes.common.utils.ExceptionUtil.buildExceptionResponse(ExceptionUtil.java:32) at org.onap.holmes.rulemgt.resources.RuleMgtResources.getCorrelationRules(RuleMgtResources.java:140) at jdk.internal.reflect.GeneratedMethodAccessor35.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:391) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:80) at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:253) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) at org.glassfish.jersey.internal.Errors.process(Errors.java:292) at org.glassfish.jersey.internal.Errors.process(Errors.java:274) at org.glassfish.jersey.internal.Errors.process(Errors.java:244) at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:232) at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) at io.dropwizard.jetty.NonblockingServletHolder.handle(NonblockingServletHolder.java:50) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1617) at io.dropwizard.servlets.ThreadNameFilter.doFilter(ThreadNameFilter.java:35) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at io.dropwizard.jersey.filter.AllowedMethodsFilter.handle(AllowedMethodsFilter.java:47) at io.dropwizard.jersey.filter.AllowedMethodsFilter.doFilter(AllowedMethodsFilter.java:41) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.onap.holmes.common.utils.transactionid.TransactionIdFilter.doFilter(TransactionIdFilter.java:73) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:545) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1297) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1212) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at com.codahale.metrics.jetty9.InstrumentedHandler.handle(InstrumentedHandler.java:249) at io.dropwizard.jetty.ContextRoutingHandler.handle(ContextRoutingHandler.java:37) at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:54) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:173) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:500) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:270) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) 2021-08-25 07:23:22 824 DEBUG [org.glassfish.jersey.server.ServerRuntime$Responder][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - WebApplicationException (WAE) with non-null entity thrown. Response with status 499 is directly generated from the WAE. javax.ws.rs.WebApplicationException: HTTP 499 at org.onap.holmes.common.utils.ExceptionUtil.buildExceptionResponse(ExceptionUtil.java:32) at org.onap.holmes.rulemgt.resources.RuleMgtResources.getCorrelationRules(RuleMgtResources.java:140) at jdk.internal.reflect.GeneratedMethodAccessor35.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:391) at org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(ResourceMethodInvoker.java:80) at org.glassfish.jersey.server.ServerRuntime$1.run(ServerRuntime.java:253) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:248) at org.glassfish.jersey.internal.Errors$1.call(Errors.java:244) at org.glassfish.jersey.internal.Errors.process(Errors.java:292) at org.glassfish.jersey.internal.Errors.process(Errors.java:274) at org.glassfish.jersey.internal.Errors.process(Errors.java:244) at org.glassfish.jersey.process.internal.RequestScope.runInScope(RequestScope.java:265) at org.glassfish.jersey.server.ServerRuntime.process(ServerRuntime.java:232) at org.glassfish.jersey.server.ApplicationHandler.handle(ApplicationHandler.java:680) at org.glassfish.jersey.servlet.WebComponent.serviceImpl(WebComponent.java:394) at org.glassfish.jersey.servlet.WebComponent.service(WebComponent.java:346) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:366) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:319) at org.glassfish.jersey.servlet.ServletContainer.service(ServletContainer.java:205) at io.dropwizard.jetty.NonblockingServletHolder.handle(NonblockingServletHolder.java:50) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1617) at io.dropwizard.servlets.ThreadNameFilter.doFilter(ThreadNameFilter.java:35) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at io.dropwizard.jersey.filter.AllowedMethodsFilter.handle(AllowedMethodsFilter.java:47) at io.dropwizard.jersey.filter.AllowedMethodsFilter.doFilter(AllowedMethodsFilter.java:41) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.onap.holmes.common.utils.transactionid.TransactionIdFilter.doFilter(TransactionIdFilter.java:73) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1604) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:545) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1297) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:485) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1212) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at com.codahale.metrics.jetty9.InstrumentedHandler.handle(InstrumentedHandler.java:249) at io.dropwizard.jetty.ContextRoutingHandler.handle(ContextRoutingHandler.java:37) at org.eclipse.jetty.server.handler.gzip.GzipHandler.handle(GzipHandler.java:767) at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:54) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:173) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:500) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:383) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:547) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:375) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:270) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) 2021-08-25 07:23:22 825 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@610a95e5 exclude by status 499 2021-08-25 07:23:22 825 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@67220a6a[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} complete=true committing=true callback=Blocker@36e72c44{null} 2021-08-25 07:23:22 825 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/rule on HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=12} 499 HTTP/1.1 Date: Wed, 25 Aug 2021 07:23:22 GMT X-TransactionID: 9e9efad6-b0eb-404e-92cd-df391d627fe7 X-InvocationID: 76dc2976-34ae-4a11-a24e-474e67863597 Content-Length: 25 Content-Type: text/plain 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@274a2a0f[PROCESSING][i=HTTP/1.1{s=499,h=5,cl=25},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@125a26be] (null,[p=0,l=25,c=8192,r=25],true)@START 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=499,h=5,cl=25} last=true content=HeapByteBuffer@67220a6a[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Date: Wed, 25 Aug 2021 07:23:22 GMT X-TransactionID: 9e9efad6-b0eb-404e-92cd-df391d627fe7 X-InvocationID: 76dc2976-34ae-4a11-a24e-474e67863597 Content-Length: 25 Content-Type: text/plain 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - CONTENT_LENGTH 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@274a2a0f[PROCESSING][i=HTTP/1.1{s=499,h=5,cl=25},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@125a26be] ([p=0,l=209,c=8192,r=209],[p=0,l=25,c=8192,r=25],true)@COMPLETING 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - write: WriteFlusher@655c0fc5{IDLE}->null [HeapByteBuffer@6c5c7d94[p=0,l=209,c=8192,r=209]={<< >>ary: Acce...\x00\x00\x00\x00\x00\x00\x00},HeapByteBuffer@67220a6a[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00}] 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - update WriteFlusher@655c0fc5{WRITING}->null:IDLE-->WRITING 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - >flush SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=14/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=W,to=16/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@36d3c187{s=COMPLETING}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=13} 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@6c5c7d94[p=0,l=209,c=8192,r=209]={<< >>ary: Acce...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@67220a6a[p=0,l=25,c=8192,r=25]={<< >>\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-08-25 07:23:22 826 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 234 bytesProduced = 263 sequenceNumber = 1 [p=0,l=263,c=17408,r=263] ioDone=false/false 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "HTTP/1.1 499 [\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - flushed 263 SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=W,to=16/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@36d3c187{s=COMPLETING}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=14} 2021-08-25 07:23:22 827 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "Date: Wed, 25 Aug 2021 07:23:22 GMT[\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "X-TransactionID: 9e9efad6-b0eb-404e-92cd-df391d627fe7[\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "X-InvocationID: 76dc2976-34ae-4a11-a24e-474e67863597[\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "Content-Type: text/plain[\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "Content-Length: 25[\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "[\r][\n]" 2021-08-25 07:23:22 827 DEBUG [org.apache.http.wire][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << "Failed to query the rule." 2021-08-25 07:23:22 827 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << HTTP/1.1 499 2021-08-25 07:23:22 827 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << Date: Wed, 25 Aug 2021 07:23:22 GMT 2021-08-25 07:23:22 827 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << X-TransactionID: 9e9efad6-b0eb-404e-92cd-df391d627fe7 2021-08-25 07:23:22 827 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << X-InvocationID: 76dc2976-34ae-4a11-a24e-474e67863597 2021-08-25 07:23:22 827 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << Content-Type: text/plain 2021-08-25 07:23:22 827 DEBUG [org.apache.http.headers][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31 << Content-Length: 25 2021-08-25 07:23:22 827 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=W,to=17/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@36d3c187{s=COMPLETING}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=COMMITTED is=IDLE awp=false se=false i=true al=1},r=1,c=false/false,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=14} 2021-08-25 07:23:22 827 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - Flushed=true written=234 remaining=0 WriteFlusher@655c0fc5{WRITING}->null 2021-08-25 07:23:22 827 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - update WriteFlusher@655c0fc5{IDLE}->null:WRITING-->IDLE 2021-08-25 07:23:22 827 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Connection can be kept alive indefinitely 2021-08-25 07:23:22 827 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@274a2a0f[PROCESSING][i=HTTP/1.1{s=499,h=5,cl=25},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@125a26be] ([p=209,l=209,c=8192,r=0],[p=25,l=25,c=8192,r=0],true)@END 2021-08-25 07:23:22 827 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Cancelling request execution 2021-08-25 07:23:22 827 DEBUG [org.apache.http.impl.conn.DefaultManagedHttpClientConnection][pool-2-thread-1] invocationID:{InvocationID} - http-outgoing-31: Shutdown connection 2021-08-25 07:23:22 827 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-24 - GET /api/holmes-rule-mgmt/v1/rule] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=fe4f332a-d3a8-4430-b85d-9858a796ae37, referenceCounter=0, store size=0} on thread dw-24 - GET /api/holmes-rule-mgmt/v1/rule 2021-08-25 07:23:22 827 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-24] invocationID:{InvocationID} - Exiting. 2021-08-25 07:23:22 827 DEBUG [org.apache.http.impl.execchain.MainClientExec][pool-2-thread-1] invocationID:{InvocationID} - Connection discarded 2021-08-25 07:23:22 828 DEBUG [org.apache.http.impl.conn.PoolingHttpClientConnectionManager][pool-2-thread-1] invocationID:{InvocationID} - Connection released: [id: 31][route: {s}->https://127.0.0.1:9101][total kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 200] 2021-08-25 07:23:22 828 ERROR [org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling][pool-2-thread-1] invocationID:{InvocationID} - Failed to get right response!Get an error status from server : 499 org.onap.holmes.common.exception.CorrelationException: Get an error status from server : 499 at org.onap.holmes.common.utils.HttpsUtils.extractResponseEntity(HttpsUtils.java:153) at org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling.getAllCorrelationRules(DcaeConfigurationPolling.java:108) at org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling.run(DcaeConfigurationPolling.java:79) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) at java.base/java.util.concurrent.FutureTask.runAndReset(Unknown Source) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.base/java.lang.Thread.run(Unknown Source) 2021-08-25 07:23:22 828 DEBUG [org.eclipse.jetty.server.Server][dw-24] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1},r=1,c=false/true,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=15} 2021-08-25 07:23:22 828 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - unhandle HttpChannelState@21433b5a{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-08-25 07:23:22 828 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@21433b5a{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:22 828 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=false/true,a=HANDLING,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=15} 2021-08-25 07:23:22 828 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - completed HttpChannelState@21433b5a{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - unhandle HttpChannelState@21433b5a{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=16} 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/rule written=25 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - unconsumed input HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=19/30000} 127.0.0.1 - - [25/Aug/2021:07:23:22 +0000] "GET /api/holmes-rule-mgmt/v1/rule HTTP/1.1" 499 25 "-" "Apache-HttpClient/4.5.10 (Java/11.0.6)" 16 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >fill SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=19/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@36d3c187{s=END}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=16} 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - filled 31 HeapByteBuffer@42227ca6[p=0,l=31,c=17408,r=31]={<<<\x15\x03\x03\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x02\x13\x87\x18\x0c\xBc\xBd\xA4y\x8fkQ?\x17\xEeV\x0f5\x13>>>\xAdsi\xC3+\xA5\xDd\x10\x16...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 829 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - net filled=31 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - unwrap net_filled=31 Status = CLOSED HandshakeStatus = NEED_WRAP bytesConsumed = 31 bytesProduced = 0 encryptedBuffer=[p=31,l=31,c=17408,r=0] unwrapBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@6cf45339{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=20/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@36d3c187{s=END}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=17} 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - atEOF HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=20/30000} filled -1 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=20/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - parseNext s=CONTENT HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 830 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - CONTENT --> CONTENT_END 2021-08-25 07:23:22 831 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - onContentComplete HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=18} 2021-08-25 07:23:22 831 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - CONTENT_END --> END 2021-08-25 07:23:22 831 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - onRequestComplete HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1},r=1,c=true/true,a=IDLE,uri=https://127.0.0.1:9101/api/holmes-rule-mgmt/v1/rule,age=18} 2021-08-25 07:23:22 831 DEBUG [org.eclipse.jetty.server.HttpInput][dw-24] invocationID:{InvocationID} - HttpInputOverHTTP@6a568a26[c=0,q=0,[0]=null,s=STREAM] addContent EOF 2021-08-25 07:23:22 833 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - END --> CLOSED 2021-08-25 07:23:22 833 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=23/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-08-25 07:23:22 833 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=23/30000} 2021-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-24] invocationID:{InvocationID} - recycle HttpChannelState@21433b5a{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-24] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >fill SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=24/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >flush SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=24/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:22 834 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - wrap Status = CLOSED HandshakeStatus = NOT_HANDSHAKING bytesConsumed = 0 bytesProduced = 31 sequenceNumber = 2 [p=0,l=31,c=17408,r=31] ioDone=true/true 2021-08-25 07:23:22 835 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=25/30000} stored flush exception org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-08-25 07:23:22 835 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=25/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 835 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(org.eclipse.jetty.io.EofException) DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=25/30000} 2021-08-25 07:23:22 835 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - shutdownOutput: SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=25/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=1,c=false/false,a=IDLE,uri=null,age=0} oshut=false, ishut=false 2021-08-25 07:23:22 836 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - >flush SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=25/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 836 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:22 836 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(org.eclipse.jetty.io.EofException) DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=26/30000} 2021-08-25 07:23:22 836 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=26/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 836 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,OPEN,fill=-,flush=-,to=6/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=26/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 836 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - doClose SocketChannelEndPoint@13e269d1{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=/127.0.0.1:9101,r=/127.0.0.1:43340,CLOSED,fill=-,flush=-,to=26/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - onClose FillInterest@79f21975{null} 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Wakeup ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1cbadf31 startThread=0 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1cbadf31 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 0 updates 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 0 keys 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@13e269d1{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=27/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-21] invocationID:{InvocationID} - onClose HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=27/30000} 2021-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-21] invocationID:{InvocationID} - onClose SslConnection@6cf45339::SocketChannelEndPoint@13e269d1{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=27/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 837 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@1cbadf31 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:22 838 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close SocketChannelEndPoint@13e269d1{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=7/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 838 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@13e269d1{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=8/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 838 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-24] invocationID:{InvocationID} - ignored: WriteFlusher@655c0fc5{IDLE}->null org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-08-25 07:23:22 838 DEBUG [org.eclipse.jetty.io.FillInterest][dw-24] invocationID:{InvocationID} - onFail FillInterest@4022fcc{null} org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-08-25 07:23:22 838 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 838 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(org.eclipse.jetty.io.EofException) DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - org.eclipse.jetty.io.EofException: null at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:279) at org.eclipse.jetty.io.ssl.SslConnection.networkFlush(SslConnection.java:477) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.flush(SslConnection.java:1071) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.fill(SslConnection.java:646) at org.eclipse.jetty.server.HttpConnection.fillRequestBuffer(HttpConnection.java:333) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:251) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ssl.SslConnection$DecryptedEndPoint.onFillable(SslConnection.java:543) at org.eclipse.jetty.io.ssl.SslConnection.onFillable(SslConnection.java:398) at org.eclipse.jetty.io.ssl.SslConnection$2.succeeded(SslConnection.java:161) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:103) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:375) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:806) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:938) at java.base/java.lang.Thread.run(Unknown Source) Caused by: java.io.IOException: Broken pipe at java.base/sun.nio.ch.FileDispatcherImpl.writev0(Native Method) at java.base/sun.nio.ch.SocketDispatcher.writev(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.IOUtil.write(Unknown Source) at java.base/sun.nio.ch.SocketChannelImpl.write(Unknown Source) at java.base/java.nio.channels.SocketChannel.write(Unknown Source) at org.eclipse.jetty.io.ChannelEndPoint.flush(ChannelEndPoint.java:273) ... 20 common frames omitted 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSED,0 of -1} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=28/30000} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - close(null) DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.http.HttpParser][dw-24] invocationID:{InvocationID} - parseNext s=CLOSED HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-08-25 07:23:22 839 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-24] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-08-25 07:23:22 840 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-24] invocationID:{InvocationID} - HttpConnection@6c3bcb0a::DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} onFillable exit HttpChannelState@21433b5a{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:22 840 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-24] invocationID:{InvocationID} - SslConnection@6cf45339{NOT_HANDSHAKING,eio=-1/31,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@216f7242{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000}=>HttpConnection@6c3bcb0a[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@36d3c187{s=START}]=>HttpChannelOverHttp@408f1b34{s=HttpChannelState@21433b5a{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-08-25 07:23:22 840 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@273fa7a7 size 1 > capacity 2021-08-25 07:23:22 840 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@273fa7a7 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@4cf6050f[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52664]] on ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=0 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=1 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update Accept@4cf6050f[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52664]] 2021-08-25 07:23:32 169 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - queue Accept@4cf6050f[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52664]] startThread=0 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-28] invocationID:{InvocationID} - run Accept@4cf6050f[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52664]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-28] invocationID:{InvocationID} - SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-28] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@72e348f9 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-28] invocationID:{InvocationID} - new HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=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@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-28] invocationID:{InvocationID} - New HTTP Connection HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:32 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@b5e6f44 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-28] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - onOpen SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - onOpen HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - fillInterested HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.FillInterest][dw-28] invocationID:{InvocationID} - interested FillInterest@7826e99f{AC.ReadCB@6fce0527{HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-28] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-28] invocationID:{InvocationID} - SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.FillInterest][dw-28] invocationID:{InvocationID} - interested FillInterest@7a9d90{SSLC.NBReadCB@71476fb9{SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-28] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@4a0a1081 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=2 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Created SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 2 updates 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updateable 2 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@b5e6f44 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-28] invocationID:{InvocationID} - ran Accept@4cf6050f[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52664]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@4a0a1081 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52664], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 172 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=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-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:32.172969Z 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@27efaa95 offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:32.173088Z 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@417b508d startThread=0 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@417b508d in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@417b508d started 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@417b508d waiting 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@27efaa95 task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:32.173347Z 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:32.173451Z tryProduce true 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-27] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1697]@2021-08-25T07:23:32.173399Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=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-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - fillable FillInterest@7a9d90{SSLC.NBReadCB@71476fb9{SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >c.onFillable SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 173 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - onFillable SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - fillable FillInterest@7826e99f{AC.ReadCB@6fce0527{HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >fill SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 261 HeapByteBuffer@19324771[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03\r\xD4\xD2X\xFa\xCb)\\=\x1b\xA1\xEc*\x19...3\x9c\xEc\xEe>=:\xF3\x8b\xB8\xB56DP\xF7\xFb\xD6\xCf\xF5\x8b\xC6\x02\x11>>>\x04o\xD6\xFb\xC1d\xC6\xFa\x16...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=261 2021-08-25 07:23:32 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill starting handshake SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 175 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 175 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:32 175 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >flush SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:32 176 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-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@71476fb9{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=5/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 373 HeapByteBuffer@19324771[p=0,l=373,c=17408,r=373]={<<<\x14\x03\x03\x00\x01\x01\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\r\xD4\xD2X\xFa\xCb)\\...\x8c`\xC0\xAb\xEdk\x05\xDe:[\xE2\xF3\xE8\x95w\xCe\xCa\xB0c<\x0e\x10\xD2>>>\xF2\xEc\x17\xCbVu\x0bk\x98...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=373 2021-08-25 07:23:32 176 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=6,l=373,c=17408,r=367]={\x14\x03\x03\x00\x01\x01<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\r\xD4\xD2X\xFa\xCb)\\=\x1b\xA1\xEc*\x19...\x8c`\xC0\xAb\xEdk\x05\xDe:[\xE2\xF3\xE8\x95w\xCe\xCa\xB0c<\x0e\x10\xD2>>>\xF2\xEc\x17\xCbVu\x0bk\x98...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:32 176 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 176 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:32 189 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@72e348f9 2021-08-25 07:23:32 192 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:32 192 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >flush SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=15/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=21/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 192 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:32 192 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:32 192 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-08-25 07:23:32 193 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=22/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 193 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:32 193 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:32 193 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-08-25 07:23:32 193 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=22/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 193 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:32 193 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:32 194 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 2687 sequenceNumber = 0 [p=0,l=2687,c=17408,r=2687] ioDone=false/false 2021-08-25 07:23:32 195 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - flushed 2687 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=23/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 195 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:32 195 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@71476fb9{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=24/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 195 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:32 195 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 230 HeapByteBuffer@19324771[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005\xA5/\x98\xF7\xF2\xCa\x86rnO~\xF9\x8dE\x7f&\x97\xD8\x8b\t...\xC9{\x86\xFa\r\x8a\x83\xFa\xEe\xEd\xE69\x9f\xCdei\xD1\xF5\x05i\x9eYu>>>C\x13\x01\x0f9\x06\xCd\x93b...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 195 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=230 2021-08-25 07:23:32 196 DEBUG [jdk.event.security][dw-27] invocationID:{InvocationID} - TLSHandshake: 10.233.72.27:52664, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-08-25 07:23:32 196 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x01\x02\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 196 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - handshake succeeded SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=25/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=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-08-25 07:23:32 196 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:32 196 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\x01\xA5\xB6p\x89o\xFb<<<\x17\x03\x03\x00\xA7#\xA4\x9c\x1e;\xD8\xBe\x19\x95\xD9\xBev\xE6dkY\x92he\xF8...\xC9{\x86\xFa\r\x8a\x83\xFa\xEe\xEd\xE69\x9f\xCdei\xD1\xF5\x05i\x9eYu>>>C\x13\x01\x0f9\x06\xCd\x93b...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 196 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:32 196 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@62f36c1[p=0,l=150,c=17408,r=150]={<< >>[\x15F\x1cND\xC6\xD4\xE7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>[\x15F\x1cND\xC6\xD4\xE7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=25/30000}=>HttpConnection@6fce0527[p=HttpParser{s=START,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=26/30000} filled 150 HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>[\x15F\x1cND\xC6\xD4\xE7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=26/30000} parse HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>[\x15F\x1cND\xC6\xD4\xE7...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>[\x15F\x1cND\xC6\xD4\xE7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - START --> SPACE1 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - SPACE1 --> URI 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - URI --> SPACE2 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-08-25 07:23:32 197 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - HEADER --> CONTENT 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - REQUEST for //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.72.121:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=27/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=27/30000} 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - handle //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - handling HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:32 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-08-25 07:23:32 199 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-27] invocationID:{InvocationID} - Host 10.233.72.121 with SNI null 2021-08-25 07:23:32 199 DEBUG [org.eclipse.jetty.server.Server][dw-27] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-08-25 07:23:32 199 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-27] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck)@130eb7a6 in null 2021-08-25 07:23:32 199 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-27] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:32 199 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-27] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:32 199 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:32 200 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - chain=customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:32 200 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - call filter customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-08-25 07:23:32 200 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Entering. 2021-08-25 07:23:32 200 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-08-25 07:23:32 200 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: d7ec8313-fbe1-4bf1-8309-f278576a5c33 2021-08-25 07:23:32 200 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Invoking synchronously ... 2021-08-25 07:23:32 200 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-08-25 07:23:32 200 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-08-25 07:23:32 200 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:32 202 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck)@130eb7a6 2021-08-25 07:23:32 202 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@6d561aa4 exclude no deflater 2021-08-25 07:23:32 202 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@76b2d0bb[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@7db018d3{null} 2021-08-25 07:23:32 202 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@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 200 OK HTTP/1.1 Connection: close Date: Wed, 25 Aug 2021 07:23:32 GMT X-TransactionID: d7ec8313-fbe1-4bf1-8309-f278576a5c33 X-InvocationID: 31d197c4-647c-4bcd-a58e-ae3f7d538903 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-08-25 07:23:32 203 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@1be52344[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46bb89a6] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-08-25 07:23:32 203 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@76b2d0bb[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-08-25 07:23:32 203 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Wed, 25 Aug 2021 07:23:32 GMT X-TransactionID: d7ec8313-fbe1-4bf1-8309-f278576a5c33 X-InvocationID: 31d197c4-647c-4bcd-a58e-ae3f7d538903 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-08-25 07:23:32 203 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-08-25 07:23:32 203 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@1be52344[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46bb89a6] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-08-25 07:23:32 203 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@266cbec2{IDLE}->null [HeapByteBuffer@6c5c7d94[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@76b2d0bb[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-08-25 07:23:32 203 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@266cbec2{WRITING}->null:IDLE-->WRITING 2021-08-25 07:23:32 204 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=W,to=32/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=COMPLETING}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-08-25 07:23:32 204 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@6c5c7d94[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-08-25 07:23:32 204 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@76b2d0bb[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-08-25 07:23:32 204 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-08-25 07:23:32 204 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-08-25 07:23:32 205 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=W,to=33/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=COMPLETING}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-08-25 07:23:32 205 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:32 205 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=W,to=34/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=COMPLETING}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=7} 2021-08-25 07:23:32 205 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@266cbec2{WRITING}->null 2021-08-25 07:23:32 205 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@266cbec2{IDLE}->null:WRITING-->IDLE 2021-08-25 07:23:32 205 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@1be52344[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46bb89a6] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-08-25 07:23:32 205 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@1be52344[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@46bb89a6] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-08-25 07:23:32 206 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=34/30000} 2021-08-25 07:23:32 206 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=35/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=8} oshut=false, ishut=false 2021-08-25 07:23:32 206 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=35/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=8} 2021-08-25 07:23:32 206 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:32 206 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:32 206 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-08-25 07:23:32 207 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=35/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=9} 2021-08-25 07:23:32 207 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:32 207 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=36/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=9} 2021-08-25 07:23:32 207 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=36/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=9} 2021-08-25 07:23:32 207 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=36/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=9} 2021-08-25 07:23:32 207 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@7a9d90{SSLC.NBReadCB@71476fb9{SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=36/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=9}}} 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUTTING,fill=-,flush=-,to=36/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@4a0a1081 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@4a0a1081 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=37/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:32 208 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=f5ce8f05-a50c-4885-876f-f03b0afb93f1, referenceCounter=0, store size=0} on thread dw-27 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 208 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-27] invocationID:{InvocationID} - Exiting. 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.72.121:9101 remote=/10.233.72.27:52664], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=37/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=37/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=37/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10}:runFillable:BLOCKING 2021-08-25 07:23:32 208 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1698]@2021-08-25T07:23:32.208948Z 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@417b508d offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1698]@2021-08-25T07:23:32.209017Z 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@13d8a943 startThread=0 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@417b508d task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1698]@2021-08-25T07:23:32.209183Z 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1698]@2021-08-25T07:23:32.20913Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=37/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11}:runFillable:BLOCKING/BLOCKING 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@13d8a943 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-26] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1699]@2021-08-25T07:23:32.209235Z tryProduce true 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@13d8a943 started 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@13d8a943 waiting 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@7a9d90{SSLC.NBReadCB@71476fb9{SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=38/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11}}} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=38/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >c.onFillable SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=38/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillable SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=38/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@7826e99f{null} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - FillInterest@7826e99f{null} lost race null 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.server.Server][dw-27] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - unhandle HttpChannelState@7c70d264{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@7c70d264{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=38/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@67de2f7e{s=END}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@27efaa95 size 1 > capacity 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@27efaa95 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 209 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - completed HttpChannelState@7c70d264{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - unhandle HttpChannelState@7c70d264{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@7c70d264{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=12} 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-27] invocationID:{InvocationID} - recycle HttpChannelState@7c70d264{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 10.233.72.27 - - [25/Aug/2021:07:23:32 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 12 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-08-25 07:23:32 210 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-27] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - >fill SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=39/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - filled 24 HeapByteBuffer@19324771[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13G\xCdB\xA2\x1a,\x0cNr~\xE6z\xAd\xB9_\x9f\x12\x86O>>>^\x9db\xA8\xC3\xA4\xF4o\x80...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - net filled=24 2021-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=40/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=40/30000} filled -1 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 211 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27] invocationID:{InvocationID} - close DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=40/30000} 2021-08-25 07:23:32 212 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27] invocationID:{InvocationID} - close(null) DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=40/30000} 2021-08-25 07:23:32 212 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - shutdownOutput: SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=40/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 212 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - ensureFillInterested SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=41/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 212 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - interested FillInterest@7a9d90{SSLC.NBReadCB@71476fb9{SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=41/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 212 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=41/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 212 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@4a0a1081 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@4a0a1081 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected oshut local=/10.233.72.121:9101 remote=/10.233.72.27:52664], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1699]@2021-08-25T07:23:32.21376Z 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@13d8a943 offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1699]@2021-08-25T07:23:32.213812Z 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@1fa6d07d startThread=0 2021-08-25 07:23:32 213 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@13d8a943 task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1699]@2021-08-25T07:23:32.213911Z 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-25] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1699]@2021-08-25T07:23:32.214034Z tryProduce true 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-26] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1699]@2021-08-25T07:23:32.213976Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - fillable FillInterest@7a9d90{SSLC.NBReadCB@71476fb9{SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >c.onFillable SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - close DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000} 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-26] invocationID:{InvocationID} - close(null) DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=43/30000} 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - onFillable SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=43/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - fillable FillInterest@7826e99f{null} 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - FillInterest@7826e99f{null} lost race null 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=43/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=43/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@417b508d waiting 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@1fa6d07d in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=1}] 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@1fa6d07d size 1 > capacity 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@1fa6d07d in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 214 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27] invocationID:{InvocationID} - close SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=42/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 215 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,OSHUT,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=43/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 215 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-27] invocationID:{InvocationID} - doClose SocketChannelEndPoint@5c64eda1{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=/10.233.72.121:9101,r=/10.233.72.27:52664,CLOSED,fill=-,flush=-,to=44/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 215 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - onClose FillInterest@7a9d90{null} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-27] invocationID:{InvocationID} - Wakeup ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5be75c5c startThread=0 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 0 updates 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 0 keys 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.FillInterest][dw-27] invocationID:{InvocationID} - onClose FillInterest@7826e99f{null} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5be75c5c in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@5c64eda1{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.http.HttpParser][dw-27] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - onClose HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-24] invocationID:{InvocationID} - onClose SslConnection@71476fb9::SocketChannelEndPoint@5c64eda1{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=3/30000}{io=0/0,kio=-1,kro=-1}->SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@5be75c5c in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-27] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000} 2021-08-25 07:23:32 216 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-27] invocationID:{InvocationID} - HttpConnection@6fce0527::DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000} onFillable exit HttpChannelState@7c70d264{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:32 217 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-27] invocationID:{InvocationID} - SslConnection@71476fb9{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@78231ae{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=45/30000}=>HttpConnection@6fce0527[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@67de2f7e{s=START}]=>HttpChannelOverHttp@26a85b89{s=HttpChannelState@7c70d264{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-08-25 07:23:32 217 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-27] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@7836590 size 1 > capacity 2021-08-25 07:23:32 217 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-27] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@7836590 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:32 711 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@2177043e] obtained in 0 millis 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - simple execute, handler=org.postgresql.jdbc.PgStatement$StatementResultHandler@29cc91dc, maxRows=0, fetchSize=0, flags=16 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> CloseStatement(S_173) 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Parse(stmt=S_174,query="/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY",oids={}) 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Bind(stmt=S_174,portal=null) 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Describe(portal=null) 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Execute(portal=null,limit=0) 2021-08-25 07:23:32 711 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE=> Sync 2021-08-25 07:23:32 713 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE CloseComplete 2021-08-25 07:23:32 713 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ErrorMessage(ERROR: relation "engine_entity" does not exist Position: 52 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01) 2021-08-25 07:23:32 713 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - <=BE ReadyForQuery(I) 2021-08-25 07:23:32 713 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query /* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY 2021-08-25 07:23:32 713 TRACE [org.postgresql.core.v3.QueryExecutorImpl][RuleAllocatorTimer] invocationID:{InvocationID} - FE marking setPortalDescribed(false) for query SYNC 2021-08-25 07:23:32 713 TRACE [org.skife.jdbi.v2.DBI][RuleAllocatorTimer] invocationID:{InvocationID} - Handle [org.skife.jdbi.v2.BasicHandle@2177043e] released 2021-08-25 07:23:32 713 ERROR [org.onap.holmes.rulemgt.RuleAllocator][RuleAllocatorTimer] invocationID:{InvocationID} - Failed to reallocate rules. org.skife.jdbi.v2.exceptions.UnableToExecuteStatementException: org.postgresql.util.PSQLException: ERROR: relation "engine_entity" does not exist Position: 52 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 [statement:"SELECT * FROM ENGINE_ENTITY", located:"SELECT * FROM ENGINE_ENTITY", rewritten:"/* EngineEntityDao.getAllEntities */ SELECT * FROM ENGINE_ENTITY", arguments:{ positional:{}, named:{}, finder:[]}] at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1338) at org.skife.jdbi.v2.Query.fold(Query.java:173) at org.skife.jdbi.v2.Query.list(Query.java:82) at org.skife.jdbi.v2.sqlobject.ResultReturnThing$IterableReturningThing.result(ResultReturnThing.java:253) at org.skife.jdbi.v2.sqlobject.ResultReturnThing.map(ResultReturnThing.java:46) at org.skife.jdbi.v2.sqlobject.QueryHandler.invoke(QueryHandler.java:41) at org.skife.jdbi.v2.sqlobject.SqlObject.invoke(SqlObject.java:224) at org.skife.jdbi.v2.sqlobject.SqlObject$3.intercept(SqlObject.java:133) at org.skife.jdbi.v2.sqlobject.CloseInternalDoNotUseThisClass$$EnhancerByCGLIB$$55087590.getAllEntities( ) at org.onap.holmes.common.engine.service.impl.EngineEntityServiceImpl.getAllEntities(EngineEntityServiceImpl.java:45) at org.onap.holmes.rulemgt.tools.EngineTools.getInstanceList(EngineTools.java:42) at org.onap.holmes.rulemgt.RuleAllocator.allocateRules(RuleAllocator.java:76) at org.onap.holmes.rulemgt.RuleAllocator$1.run(RuleAllocator.java:66) at java.base/java.util.TimerThread.mainLoop(Unknown Source) at java.base/java.util.TimerThread.run(Unknown Source) Caused by: org.postgresql.util.PSQLException: ERROR: relation "engine_entity" does not exist Position: 52 Location: File: parse_relation.c, Routine: parserOpenTable, Line: 1376 Server SQLState: 42P01 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2532) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2267) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:312) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:448) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:369) at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:153) at org.postgresql.jdbc.PgPreparedStatement.execute(PgPreparedStatement.java:142) at jdk.internal.reflect.GeneratedMethodAccessor32.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.apache.tomcat.jdbc.pool.StatementFacade$StatementProxy.invoke(StatementFacade.java:114) at com.sun.proxy.$Proxy81.execute(Unknown Source) at org.skife.jdbi.v2.SQLStatement.internalExecute(SQLStatement.java:1327) ... 14 common frames omitted 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@48d817fa[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768]] on ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=0 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=1 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update Accept@48d817fa[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768]] 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - queue Accept@48d817fa[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768]] startThread=0 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-28] invocationID:{InvocationID} - run Accept@48d817fa[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-28] invocationID:{InvocationID} - SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-08-25 07:23:37 416 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-28] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@131c1378 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-28] invocationID:{InvocationID} - new HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-28] invocationID:{InvocationID} - New HTTP Connection HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@a322c2e on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-28] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - onOpen SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - onOpen HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - fillInterested HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:37 417 DEBUG [org.eclipse.jetty.io.FillInterest][dw-28] invocationID:{InvocationID} - interested FillInterest@5618843e{AC.ReadCB@398b0ba3{HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-28] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-28] invocationID:{InvocationID} - SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.FillInterest][dw-28] invocationID:{InvocationID} - interested FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-28] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=2 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 2 updates 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updateable 2 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@a322c2e 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 2021-08-25 07:23:37 418 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Created SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-28] invocationID:{InvocationID} - ran Accept@48d817fa[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1700]@2021-08-25T07:23:37.41975Z 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@417b508d offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1700]@2021-08-25T07:23:37.419808Z 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@5ba0f9e8 startThread=0 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@417b508d task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1700]@2021-08-25T07:23:37.419932Z 2021-08-25 07:23:37 419 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@5ba0f9e8 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@5ba0f9e8 started 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-26] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1700]@2021-08-25T07:23:37.420004Z tryProduce true 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@5ba0f9e8 waiting 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-25] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1700]@2021-08-25T07:23:37.419966Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - fillable FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >c.onFillable SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - onFillable SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - fillable FillInterest@5618843e{AC.ReadCB@398b0ba3{HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >fill SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 261 HeapByteBuffer@19324771[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03\x1d\x90\xE6\xB0\xC3\x86N\xEf\x90\xB4\x9f\xD0\x01\x13...l\xB0\x9a\x15\x9e\xE4\x89\x08\xD4\x97Fh\x95[\xFbv\x0f\xB1\xF3T\x86\xCeI>>>\x93\x9b\xEae.Ku`"...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=261 2021-08-25 07:23:37 420 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill starting handshake SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >flush SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:37 421 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 6 HeapByteBuffer@19324771[p=0,l=6,c=17408,r=6]={<<<\x14\x03\x03\x00\x01\x01>>>\x00\x00\xFc\x03\x03\x1d\x90\xE6\xB0...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=6 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[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-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >fill SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[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-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000} filled 0 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.http.HttpParser][dw-25] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000} parsed false HttpParser{s=START,0 of -1} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-25] invocationID:{InvocationID} - fillInterested HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - interested FillInterest@5618843e{AC.ReadCB@398b0ba3{HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 422 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.FillInterest][dw-25] invocationID:{InvocationID} - interested FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-25] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-25] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-25] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-25] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@13d8a943 size 1 > capacity 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@13d8a943 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 423 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1701]@2021-08-25T07:23:37.423946Z 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@5ba0f9e8 offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1701]@2021-08-25T07:23:37.424038Z 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@acfe00a startThread=0 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@acfe00a in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@5ba0f9e8 task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1701]@2021-08-25T07:23:37.424217Z 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@acfe00a started 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@acfe00a waiting 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1701]@2021-08-25T07:23:37.424294Z tryProduce true 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-26] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1701]@2021-08-25T07:23:37.42427Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - fillable FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >c.onFillable SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 424 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - onFillable SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - fillable FillInterest@5618843e{AC.ReadCB@398b0ba3{HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >fill SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 367 HeapByteBuffer@19324771[p=0,l=367,c=17408,r=367]={<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03\x1d\x90\xE6\xB0\xC3\x86N\xEf\x90\xB4\x9f\xD0\x01\x13...\xD3^\xF9\r\xCeX>\x82R\xD1"\xA2,\x9b\xCb\xE0H\xCf\xEbJ]\t\x00>>>\xB0c<\x0e\x10\xD2\xF2\xEc\x17...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=367 2021-08-25 07:23:37 425 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 425 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:37 430 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@131c1378 2021-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >flush SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=7/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:37 433 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-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:37 433 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:37 433 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-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 2687 sequenceNumber = 0 [p=0,l=2687,c=17408,r=2687] ioDone=false/false 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - flushed 2687 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:37 434 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >fill SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 434 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=0,l=0,c=17408,r=0]={<<<>>>\x16\x03\x03\x01j\x01\x00\x01f...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:37 435 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000} filled 0 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.http.HttpParser][dw-26] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000} parsed false HttpParser{s=START,0 of -1} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-26] invocationID:{InvocationID} - fillInterested HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=12/30000} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@5618843e{AC.ReadCB@398b0ba3{HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=true ei=null di=null SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 435 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.FillInterest][dw-26] invocationID:{InvocationID} - interested FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-26] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-26] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-26] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000} onFillable exit HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-26] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-26] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@417b508d size 1 > capacity 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-26] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@417b508d in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52768], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1702]@2021-08-25T07:23:37.436858Z 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@acfe00a offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1702]@2021-08-25T07:23:37.436915Z 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:37 436 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@231a125b startThread=0 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@acfe00a task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1702]@2021-08-25T07:23:37.437027Z 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@231a125b in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1702]@2021-08-25T07:23:37.437079Z tryProduce true 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@231a125b started 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-23] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1702]@2021-08-25T07:23:37.437052Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@231a125b waiting 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >c.onFillable SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillable SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - fillable FillInterest@5618843e{AC.ReadCB@398b0ba3{HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=FI,flush=-,to=1/30000}}} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000} onFillable enter HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >fill SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=1/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - filled 230 HeapByteBuffer@19324771[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005\xE9\x83\x8bY\xCa\xEbC\x9e\xCc\x9c\x96\xBa\x1c\xD6\x13\xC5\xDd\nr\x10...-0\xB5*\x8d\xAc {}\xEa\x85\xE3\x96\x8b\x12\xE2\xFb\x14t\x9dO%J>>>9\xAa\xEb\xDb-\x01\x99<8...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 437 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - net filled=230 2021-08-25 07:23:37 438 DEBUG [jdk.event.security][dw-23] invocationID:{InvocationID} - TLSHandshake: 10.233.72.27:52768, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-08-25 07:23:37 438 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\x95<-\xC7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - handshake succeeded SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=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-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\xEbhC\x9cdID<<<\x17\x03\x03\x00\xA7\xAaZc\xC1\xB6E\x1e\x1fw\x90\xF3J@\x0fd1\x81\x88\x85`...-0\xB5*\x8d\xAc {}\xEa\x85\xE3\x96\x8b\x12\xE2\xFb\x14t\x9dO%J>>>9\xAa\xEb\xDb-\x01\x99<8...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:37 438 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@62f36c1[p=0,l=150,c=17408,r=150]={<< >>\x19\xC8\xA9\xE3/\xCfz\xBc[...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>\x19\xC8\xA9\xE3/\xCfz\xBc[...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=START,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000} filled 150 HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>\x19\xC8\xA9\xE3/\xCfz\xBc[...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000} parse HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>\x19\xC8\xA9\xE3/\xCfz\xBc[...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>\x19\xC8\xA9\xE3/\xCfz\xBc[...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - START --> SPACE1 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - SPACE1 --> URI 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - URI --> SPACE2 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-08-25 07:23:37 438 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - HEADER --> CONTENT 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - REQUEST for //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.72.121:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - handle //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - handling HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-23] invocationID:{InvocationID} - Host 10.233.72.121 with SNI null 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.Server][dw-23] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-23] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck)@397c0eb7 in null 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-23] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-23] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - chain=customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - call filter customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-08-25 07:23:37 439 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Entering. 2021-08-25 07:23:37 439 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-08-25 07:23:37 439 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: 646b64b4-ae85-49e7-a582-aa48037533dc 2021-08-25 07:23:37 439 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Invoking synchronously ... 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-08-25 07:23:37 439 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck)@397c0eb7 2021-08-25 07:23:37 441 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@24f8166b exclude no deflater 2021-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@723c2106[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@1477dd0{null} 2021-08-25 07:23:37 441 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@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 200 OK HTTP/1.1 Connection: close Date: Wed, 25 Aug 2021 07:23:37 GMT X-TransactionID: 646b64b4-ae85-49e7-a582-aa48037533dc X-InvocationID: 660bba4c-222f-4888-b3a7-8281fe083cbf Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-08-25 07:23:37 441 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@5897c2f9[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3cb8dcce] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-08-25 07:23:37 441 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@723c2106[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-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Wed, 25 Aug 2021 07:23:37 GMT X-TransactionID: 646b64b4-ae85-49e7-a582-aa48037533dc X-InvocationID: 660bba4c-222f-4888-b3a7-8281fe083cbf Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-08-25 07:23:37 441 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@5897c2f9[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3cb8dcce] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@2f9fee4e{IDLE}->null [HeapByteBuffer@6c5c7d94[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@723c2106[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-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2f9fee4e{WRITING}->null:IDLE-->WRITING 2021-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=3/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=W,to=5/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=COMPLETING}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 2021-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@6c5c7d94[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-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@723c2106[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-08-25 07:23:37 441 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-08-25 07:23:37 441 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-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=4/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=W,to=6/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=COMPLETING}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=W,to=7/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=COMPLETING}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@2f9fee4e{WRITING}->null 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2f9fee4e{IDLE}->null:WRITING-->IDLE 2021-08-25 07:23:37 442 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@5897c2f9[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3cb8dcce] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-08-25 07:23:37 442 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@5897c2f9[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@3cb8dcce] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=7/30000} 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=7/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} oshut=false, ishut=false 2021-08-25 07:23:37 442 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=7/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:37 443 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-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=7/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=7/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=8/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=8/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=8/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5}}} 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUTTING,fill=-,flush=-,to=8/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=5} 2021-08-25 07:23:37 443 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/0x0000000100609840@5937cfa9 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:37 443 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:37 444 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=b1dd909e-ebf3-4c08-83b3-f7316080c446, referenceCounter=0, store size=0} on thread dw-23 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-08-25 07:23:37 444 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-23] invocationID:{InvocationID} - Exiting. 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.Server][dw-23] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - unhandle HttpChannelState@5dca04f4{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@5dca04f4{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - completed HttpChannelState@5dca04f4{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@5937cfa9 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - unhandle HttpChannelState@5dca04f4{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@5dca04f4{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=9/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@37af477b{s=END}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=6} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-23] invocationID:{InvocationID} - recycle HttpChannelState@5dca04f4{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-08-25 07:23:37 444 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - >fill SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=1/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=9/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - filled 24 HeapByteBuffer@19324771[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13\x00l4\x177\xCe\xC6X\x8d\xA3\x9f\xEd\xDe-\x82\xDd\x9c\x94\x84>>>\xF7\xF5\xCd\x14p\x15on\xE3...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - net filled=24 2021-08-25 07:23:37 445 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=9/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=9/30000} filled -1 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=9/30000} 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close(null) DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=-,flush=-,to=9/30000} 10.233.72.27 - - [25/Aug/2021:07:23:37 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 6 2021-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - shutdownOutput: SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,CLOSED,fill=-,flush=-,to=9/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - ensureFillInterested SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,CLOSED,fill=-,flush=-,to=9/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,CLOSED,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,OSHUT,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,CLOSED,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-23] invocationID:{InvocationID} - doClose SocketChannelEndPoint@5cb97361{l=/10.233.72.121:9101,r=/10.233.72.27:52768,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=/10.233.72.121:9101,r=/10.233.72.27:52768,CLOSED,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 445 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - onClose FillInterest@4d50818f{SSLC.NBReadCB@7527438{SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - onFillableFail SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=10/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - onFail FillInterest@5618843e{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-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Wakeup ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@150caf90 startThread=0 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - onClose FillInterest@5618843e{null} 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=10/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.http.HttpParser][dw-23] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=10/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000} 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000} 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000} onFillable exit HttpChannelState@5dca04f4{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-23] invocationID:{InvocationID} - SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-23] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@5ba0f9e8 size 1 > capacity 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@5ba0f9e8 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 0 updates 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 0 keys 2021-08-25 07:23:37 446 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@150caf90 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:37 447 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@5cb97361{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 447 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-23] invocationID:{InvocationID} - onClose HttpConnection@398b0ba3::DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000} 2021-08-25 07:23:37 447 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-23] invocationID:{InvocationID} - onClose SslConnection@7527438::SocketChannelEndPoint@5cb97361{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@7527438{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4aff4657{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=11/30000}=>HttpConnection@398b0ba3[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@37af477b{s=START}]=>HttpChannelOverHttp@47de9a96{s=HttpChannelState@5dca04f4{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-08-25 07:23:37 447 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@150caf90 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@17c011b2[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52858]] on ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=0 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=1 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - update Accept@17c011b2[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52858]] 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - queue Accept@17c011b2[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52858]] startThread=0 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-28] invocationID:{InvocationID} - run Accept@17c011b2[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52858]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:42 168 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-28] invocationID:{InvocationID} - SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-08-25 07:23:42 169 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-28] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@64580bc 2021-08-25 07:23:42 169 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-28] invocationID:{InvocationID} - new HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=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@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:42 169 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-28] invocationID:{InvocationID} - New HTTP Connection HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:42 169 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@2ed69e83 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:42 169 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-28] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - onOpen SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - onOpen HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-28] invocationID:{InvocationID} - fillInterested HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.FillInterest][dw-28] invocationID:{InvocationID} - interested FillInterest@12bf4da6{AC.ReadCB@60605fb8{HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}}} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-28] invocationID:{InvocationID} - >needFillInterest s=IDLE/IDLE uf=false ei=null di=null SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-28] invocationID:{InvocationID} - SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.FillInterest][dw-28] invocationID:{InvocationID} - interested FillInterest@807ebf4{SSLC.NBReadCB@69e2a9ce{SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-28] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@74d78fe3 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=2 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-28] invocationID:{InvocationID} - Created SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 2 updates 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updateable 2 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - update org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@2ed69e83 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-28] invocationID:{InvocationID} - ran Accept@17c011b2[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52858]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:42 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@74d78fe3 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=0}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 1/1/1 selected 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 1 keys, 0 updates 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - selected 1 channel=java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:52858], selector=sun.nio.ch.EPollSelectorImpl@3f470e67, interestOps=1, readyOps=1 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - onSelected 1->0 r=true w=false for SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=0/30000}{io=1/0,kio=1,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - task CEP:SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=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-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0} tryExecute EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1703]@2021-08-25T07:23:42.171517Z 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=0}@231a125b offer EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/PRODUCING/p=false/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=5,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=0}][pc=0,pic=0,pec=4,epc=1703]@2021-08-25T07:23:42.171587Z 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1} startReservedThread p=1 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - queue ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@146c6040 startThread=0 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-25] invocationID:{InvocationID} - run ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@146c6040 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}] 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-24] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=0/1,p=1}@231a125b task=EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=0/1,p=1}][pc=0,pic=0,pec=4,epc=1703]@2021-08-25T07:23:42.171704Z 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=1}@146c6040 started 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-25] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@146c6040 waiting 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-24] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}][pc=0,pic=0,pec=4,epc=1703]@2021-08-25T07:23:42.171753Z tryProduce true 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.util.thread.strategy.EatWhatYouKill][dw-21] invocationID:{InvocationID} - EatWhatYouKill@1b60d324/SelectorProducer@b86cb18/IDLE/p=true/InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=1}][pc=0,pic=0,pec=4,epc=1703]@2021-08-25T07:23:42.171731Z m=EXECUTE_PRODUCE_CONSUME t=CEP:SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}{io=1/0,kio=1,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=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-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Key interests updated 1 -> 0 on SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - fillable FillInterest@807ebf4{SSLC.NBReadCB@69e2a9ce{SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0}}} 2021-08-25 07:23:42 171 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - >c.onFillable SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - onFillable SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=INTERESTED,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=1/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - fillable FillInterest@12bf4da6{AC.ReadCB@60605fb8{HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=FI,flush=-,to=2/30000}}} 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=2/30000} onFillable enter HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - >fill SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=2/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 261 HeapByteBuffer@19324771[p=0,l=261,c=17408,r=261]={<<<\x16\x03\x01\x01\x00\x01\x00\x00\xFc\x03\x03a\xDd\xA8\xB6\xFe\x08\xEe\x18\xB48a\xCfF\x9d...\xA9\x1e\xAf|;\xE2a$\xB5\xEdf^\xF6\x8a:L\xA8\xFe!`$(i>>>6\xD3s\xA6\xAa\xBe\x96Q\x08...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=261 2021-08-25 07:23:42 172 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill starting handshake SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=261/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=2/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 173 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 173 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:42 173 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:42 173 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - >flush SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=3/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - flushed 166 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - SslConnection@69e2a9ce{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=4/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 373 HeapByteBuffer@19324771[p=0,l=373,c=17408,r=373]={<<<\x14\x03\x03\x00\x01\x01\x16\x03\x03\x01j\x01\x00\x01f\x03\x03a\xDd\xA8\xB6\xFe\x08\xEe\x18..._\xD0\x83a\xF0k\xF4\xAd\xE2\x0b\xC4x<\x03\x07\xE7$\xB9\x94N\x95\xCd\xCf>>>\xF2\xEc\x17\xCbVu\x0bk\x98...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=373 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=6,l=373,c=17408,r=367]={\x14\x03\x03\x00\x01\x01<<<\x16\x03\x03\x01j\x01\x00\x01f\x03\x03a\xDd\xA8\xB6\xFe\x08\xEe\x18\xB48a\xCfF\x9d..._\xD0\x83a\xF0k\xF4\xAd\xE2\x0b\xC4x<\x03\x07\xE7$\xB9\x94N\x95\xCd\xCf>>>\xF2\xEc\x17\xCbVu\x0bk\x98...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 174 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_TASK 2021-08-25 07:23:42 179 DEBUG [org.eclipse.jetty.util.ssl.SniX509ExtendedKeyManager][dw-21] invocationID:{InvocationID} - Chose alias holmes-rule-mgmt@holmes-rule-mgmt.onap.org/RSA on sun.security.ssl.SSLEngineImpl@64580bc 2021-08-25 07:23:42 182 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_WRAP 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - >flush SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=8/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_WRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=12/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - flushed 160 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=9/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=13/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:42 183 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - flushed 6 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_WRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=13/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - wrap Status = OK HandshakeStatus = NEED_UNWRAP bytesConsumed = 0 bytesProduced = 2687 sequenceNumber = 0 [p=0,l=2687,c=17408,r=2687] ioDone=false/false 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - flushed 2687 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=0/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - SslConnection@69e2a9ce{NEED_UNWRAP,eio=0/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=14/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 184 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[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-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - >fill SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=15/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 230 HeapByteBuffer@19324771[p=0,l=230,c=17408,r=230]={<<<\x17\x03\x03\x005\xCe\x9f\xCa\xD6\nX5Q\xBc\xE7^\r\x1e~^\x8b\xD7\xF0\xF5;...Z\x1f\r\r\xE6\x833\xFf\xB9\xDd\xB3\xAa\xC8\xF0\xBf\x88\xA7\xC8\xF2\xC5H\xDb\xCd>>>C\x13\x01\x0f\xBa\x96}\xBd7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 185 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=230 2021-08-25 07:23:42 186 DEBUG [jdk.event.security][dw-21] invocationID:{InvocationID} - TLSHandshake: 10.233.72.27:52858, TLSv1.3, TLS_AES_128_GCM_SHA256, 0 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xF3\xD0r\xD9...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - handshake succeeded SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=172/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=16/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=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-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NOT_HANDSHAKING 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 0 HeapByteBuffer@19324771[p=58,l=230,c=17408,r=172]={\x17\x03\x03\x005\x14\x00\x00 ...\xC0\xC5\xAaX\xFd\xC0\xEb<<<\x17\x03\x03\x00\xA7\x18\x147\xC1\x97\xF7Y\xDa\x7f\xB6\xB5\x0f1\x0f\x134F1()...Z\x1f\r\r\xE6\x833\xFf\xB9\xDd\xB3\xAa\xC8\xF0\xBf\x88\xA7\xC8\xF2\xC5H\xDb\xCd>>>C\x13\x01\x0f\xBa\x96}\xBd7...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=0 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=150,c=17408,r=150]={<< >>]Z\xB4\xC6\x08\x9d\xD8\xF8\xFc...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>]Z\xB4\xC6\x08\x9d\xD8\xF8\xFc...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=16/30000}=>HttpConnection@60605fb8[p=HttpParser{s=START,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=16/30000} filled 150 HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>]Z\xB4\xC6\x08\x9d\xD8\xF8\xFc...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 186 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=16/30000} parse HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>]Z\xB4\xC6\x08\x9d\xD8\xF8\xFc...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - parseNext s=START HeapByteBuffer@62f36c1[p=0,l=150,c=17408,r=150]={<< >>]Z\xB4\xC6\x08\x9d\xD8\xF8\xFc...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - START --> SPACE1 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - SPACE1 --> URI 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - URI --> SPACE2 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - SPACE2 --> REQUEST_VERSION 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - REQUEST_VERSION --> HEADER 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Host --> VALUE 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Host --> IN_VALUE 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Host --> FIELD 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:User-Agent --> VALUE 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:User-Agent --> IN_VALUE 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:User-Agent --> FIELD 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> IN_VALUE 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Accept-Encoding: gzip --> FIELD 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Connection: close --> IN_VALUE 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER:Connection: close --> FIELD 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - HEADER --> CONTENT 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - REQUEST for //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} GET //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1 Host: 10.233.72.121:9101 User-Agent: kube-probe/1.19 Accept-Encoding: gzip Connection: close 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=17/30000} parsed true HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=17/30000} 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - handle //10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-08-25 07:23:42 187 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - handling HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - action DISPATCH HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=0} 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.server.SecureRequestCustomizer][dw-21] invocationID:{InvocationID} - Host 10.233.72.121 with SNI null 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.server.Server][dw-21] invocationID:{InvocationID} - REQUEST GET /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=1} 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-21] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} handle Request(GET https://10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck)@6503b15d in null 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-21] invocationID:{InvocationID} - scope null||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.server.handler.ContextHandler][dw-21] invocationID:{InvocationID} - context=||/api/holmes-rule-mgmt/v1/healthcheck @ i.d.j.MutableServletContextHandler@fb6097b{/,null,AVAILABLE} 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-21] invocationID:{InvocationID} - servlet |/api/holmes-rule-mgmt/v1|/healthcheck -> io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-21] invocationID:{InvocationID} - chain=customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true->io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true->io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true->io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-21] invocationID:{InvocationID} - call filter customFilter@1d60059f==org.onap.holmes.common.utils.transactionid.TransactionIdFilter,inst=true,async=true 2021-08-25 07:23:42 188 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-21] invocationID:{InvocationID} - Entering. 2021-08-25 07:23:42 188 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-21] invocationID:{InvocationID} - This warning has a 'MY_MARKER' annotation. 2021-08-25 07:23:42 188 INFO [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-21] invocationID:{InvocationID} - Request ID (X-TransactionID header) not exist. It was generated: abc5d5b8-0e54-4f2b-87ce-bcde5fe58f45 2021-08-25 07:23:42 188 WARN [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-21] invocationID:{InvocationID} - Invoking synchronously ... 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-21] invocationID:{InvocationID} - call filter io.dropwizard.jersey.filter.AllowedMethodsFilter-2e362407@2e362407==io.dropwizard.jersey.filter.AllowedMethodsFilter,inst=true,async=true 2021-08-25 07:23:42 188 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-21] invocationID:{InvocationID} - call filter io.dropwizard.servlets.ThreadNameFilter-17fbfb02@17fbfb02==io.dropwizard.servlets.ThreadNameFilter,inst=true,async=true 2021-08-25 07:23:42 189 DEBUG [org.eclipse.jetty.servlet.ServletHandler][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - call servlet io.dropwizard.jersey.setup.JerseyServletContainer-267891bf@26e6fc5f==io.dropwizard.jersey.setup.JerseyServletContainer,jsp=null,order=1,inst=true,async=true 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHandler][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - GzipHandler@2bdab835{STARTED,min=256,inflate=8192} excluded minGzipSize Request(GET https://10.233.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck)@6503b15d 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - org.eclipse.jetty.server.handler.gzip.GzipHttpOutputInterceptor@39d59d08 exclude no deflater 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - sendResponse info=null content=HeapByteBuffer@56b751f8[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@21ae450e{null} 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - COMMIT for /api/holmes-rule-mgmt/v1/healthcheck on HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=3} 200 OK HTTP/1.1 Connection: close Date: Wed, 25 Aug 2021 07:23:42 GMT X-TransactionID: abc5d5b8-0e54-4f2b-87ce-bcde5fe58f45 X-InvocationID: 04eb4d75-3b9a-408c-993f-ad4e967c7fd6 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: NEED_HEADER for org.eclipse.jetty.server.HttpConnection$SendCallback@595f813f[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c777ac1] (null,[p=0,l=4,c=8192,r=4],true)@START 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generateHeaders HTTP/1.1{s=200,h=7,cl=4} last=true content=HeapByteBuffer@56b751f8[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-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Connection: close Date: Wed, 25 Aug 2021 07:23:42 GMT X-TransactionID: abc5d5b8-0e54-4f2b-87ce-bcde5fe58f45 X-InvocationID: 04eb4d75-3b9a-408c-993f-ad4e967c7fd6 Content-Length: 4 Content-Type: text/plain Vary: Accept-Encoding 2021-08-25 07:23:42 190 DEBUG [org.eclipse.jetty.http.HttpGenerator][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - EOF_CONTENT 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: FLUSH for org.eclipse.jetty.server.HttpConnection$SendCallback@595f813f[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c777ac1] ([p=0,l=252,c=8192,r=252],[p=0,l=4,c=8192,r=4],true)@COMPLETING 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - write: WriteFlusher@2023ca26{IDLE}->null [HeapByteBuffer@6c5c7d94[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@56b751f8[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-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2023ca26{WRITING}->null:IDLE-->WRITING 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=W,to=20/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=COMPLETING}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@6c5c7d94[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-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[1]=HeapByteBuffer@56b751f8[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-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NOT_HANDSHAKING 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - 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-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 294 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=W,to=21/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=COMPLETING}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=W,to=21/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=COMPLETING}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Flushed=true written=256 remaining=0 WriteFlusher@2023ca26{WRITING}->null 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.WriteFlusher][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - update WriteFlusher@2023ca26{IDLE}->null:WRITING-->IDLE 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: SHUTDOWN_OUT for org.eclipse.jetty.server.HttpConnection$SendCallback@595f813f[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c777ac1] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - generate: DONE for org.eclipse.jetty.server.HttpConnection$SendCallback@595f813f[PROCESSING][i=HTTP/1.1{s=200,h=7,cl=4},cb=org.eclipse.jetty.server.HttpChannel$SendCallback@4c777ac1] ([p=252,l=252,c=8192,r=0],[p=4,l=4,c=8192,r=0],true)@END 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=21/30000} 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput: SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=21/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} oshut=false, ishut=false 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - >flush SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_WRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=21/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=4} 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush b[0]=HeapByteBuffer@454c129[p=0,l=0,c=0,r=0]={<<<>>>} 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flush NEED_WRAP 2021-08-25 07:23:42 191 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - 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-08-25 07:23:42 196 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - flushed 40 SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=5/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=26/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=9} 2021-08-25 07:23:42 196 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - net flushed=true, ac=true 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - shutdownOutput SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/0,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=26/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=27/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - ensureFillInterested SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=27/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - interested FillInterest@807ebf4{SSLC.NBReadCB@69e2a9ce{SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/0,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=27/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10}}} 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - changeInterests p=false 0->1 for SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUTTING,fill=-,flush=-,to=27/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CONTENT,0 of -1},g=HttpGenerator@70404189{s=END}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Queued change lazy=false org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@74d78fe3 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=1 2021-08-25 07:23:42 197 TRACE [org.glassfish.jersey.inject.hk2.Hk2RequestScope$Instance][dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck] invocationID:{InvocationID} - [DEBUG] Released scope instance Instance{id=d43558e5-d22b-4139-bf23-c7af4166916c, referenceCounter=0, store size=0} on thread dw-21 - GET /api/holmes-rule-mgmt/v1/healthcheck 2021-08-25 07:23:42 197 DEBUG [org.onap.holmes.common.utils.transactionid.TransactionIdFilter][dw-21] invocationID:{InvocationID} - Exiting. 2021-08-25 07:23:42 197 DEBUG [org.eclipse.jetty.server.Server][dw-21] invocationID:{InvocationID} - handled=true async=false committed=true on HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=10} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - unhandle HttpChannelState@28fdf1d6{s=HANDLING rs=BLOCKING os=COMPLETED is=IDLE awp=false se=false i=true al=1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - nextAction(false) COMPLETE HttpChannelState@28fdf1d6{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - action COMPLETE HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - completed HttpChannelState@28fdf1d6{s=HANDLING rs=COMPLETING os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - unhandle HttpChannelState@28fdf1d6{s=HANDLING rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - nextAction(false) TERMINATED HttpChannelState@28fdf1d6{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - action TERMINATED HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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.72.121:9101/api/holmes-rule-mgmt/v1/healthcheck,age=11} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - onCompleted for /api/holmes-rule-mgmt/v1/healthcheck written=4 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannelState][dw-21] invocationID:{InvocationID} - recycle HttpChannelState@28fdf1d6{s=IDLE rs=COMPLETED os=COMPLETED is=IDLE awp=false se=false i=false al=1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - close HttpParser{s=CONTENT,0 of -1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - CONTENT --> CLOSE 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-21] invocationID:{InvocationID} - !handle TERMINATED HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - >fill SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=1/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NEED_UNWRAP,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=-,flush=-,to=28/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - fill NEED_UNWRAP 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - filled 24 HeapByteBuffer@19324771[p=0,l=24,c=17408,r=24]={<<<\x17\x03\x03\x00\x13Y7\xF5\x11\x1b\x1a\x9d\xCf\xCb\xC6\x15\xF5\xA1\x02\x8e*^\x15T>>>\xEcd~(\xB8]\xB8\x0c\xA5...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - net filled=24 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] 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@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xD5\x05\x14\xFd...\x00\x00\x00\x00\x00\x00\x00} appBuffer=HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xD5\x05\x14\xFd...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=-,flush=-,to=28/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - atEOF HttpParser{s=CLOSE,0 of -1} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=-,flush=-,to=28/30000} filled -1 HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xD5\x05\x14\xFd...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21] invocationID:{InvocationID} - close DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=-,flush=-,to=28/30000} 2021-08-25 07:23:42 198 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21] invocationID:{InvocationID} - close(null) DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=-,flush=-,to=28/30000} 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - shutdownOutput: SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=-,flush=-,to=28/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - ensureFillInterested SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=-,flush=-,to=28/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21] invocationID:{InvocationID} - close SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=-,flush=-,to=29/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21] invocationID:{InvocationID} - close(null) SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,OSHUT,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=-,flush=-,to=29/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/1 selected 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - update org.eclipse.jetty.io.ChannelEndPoint$$Lambda$503/0x0000000100609840@74d78fe3 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-21] invocationID:{InvocationID} - doClose SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=FI,flush=-,to=0/30000}{io=0/1,kio=0,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=-,flush=-,to=29/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ChannelEndPoint][dw-24] invocationID:{InvocationID} - Key interests updated 0 -> 1 on SocketChannelEndPoint@14eedf6b{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/1,kio=1,kro=1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=/10.233.72.121:9101,r=/10.233.72.27:52858,CLOSED,fill=-,flush=-,to=29/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - onClose FillInterest@807ebf4{SSLC.NBReadCB@69e2a9ce{SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=FI,flush=-,to=0/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - onFillableFail SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=0/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSE,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - onFail FillInterest@12bf4da6{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-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Wakeup ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - queue org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@73766d19 startThread=0 2021-08-25 07:23:42 199 DEBUG [org.eclipse.jetty.io.FillInterest][dw-21] invocationID:{InvocationID} - onClose FillInterest@12bf4da6{null} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} parse HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xD5\x05\x14\xFd...\x00\x00\x00\x00\x00\x00\x00} {} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - parseNext s=CLOSE HeapByteBuffer@62f36c1[p=0,l=0,c=17408,r=0]={<<<>>>\x17\x03\x03\x00#\xD5\x05\x14\xFd...\x00\x00\x00\x00\x00\x00\x00} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.http.HttpParser][dw-21] invocationID:{InvocationID} - CLOSE --> CLOSED 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} parsed false HttpParser{s=CLOSED,0 of -1} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - releaseRequestBuffer HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-21] invocationID:{InvocationID} - shutdownOutput DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-21] invocationID:{InvocationID} - HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=29/30000} onFillable exit HttpChannelState@28fdf1d6{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} null 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ssl.SslConnection][dw-21] invocationID:{InvocationID} - SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.util.thread.ReservedThreadExecutor][dw-21] invocationID:{InvocationID} - ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@acfe00a size 1 > capacity 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran ReservedThreadExecutor@4e3283f6{s=1/1,p=0}@acfe00a in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=3,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - run org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@73766d19 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 0 updates 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 0 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 0 keys 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-21] invocationID:{InvocationID} - Destroyed SocketChannelEndPoint@14eedf6b{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-21] invocationID:{InvocationID} - onClose HttpConnection@60605fb8::DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000} 2021-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-21] invocationID:{InvocationID} - onClose SslConnection@69e2a9ce::SocketChannelEndPoint@14eedf6b{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=1/30000}{io=1/1,kio=-1,kro=-1}->SslConnection@69e2a9ce{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@4a0a7625{l=0.0.0.0/0.0.0.0:9101,r=null,CLOSED,fill=-,flush=-,to=30/30000}=>HttpConnection@60605fb8[p=HttpParser{s=CLOSED,0 of -1},g=HttpGenerator@70404189{s=START}]=>HttpChannelOverHttp@4fd02502{s=HttpChannelState@28fdf1d6{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-08-25 07:23:42 200 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-21] invocationID:{InvocationID} - ran org.eclipse.jetty.io.ManagedSelector$DestroyEndPoint@73766d19 in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 10.233.72.27 - - [25/Aug/2021:07:23:42 +0000] "GET /api/holmes-rule-mgmt/v1/healthcheck HTTP/1.1" 200 4 "-" "kube-probe/1.19" 11 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Queued change lazy=false Accept@71bc1044[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:53044]] on ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=0 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-22-acceptor-0@52856ff9-RuleActiveApp@6bb4cc0e{SSL,[ssl, http/1.1]}{0.0.0.0:9101}] invocationID:{InvocationID} - Wakeup on submit ManagedSelector@16df9bde{STARTED} id=0 keys=0 selected=0 updates=1 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken with none selected 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 woken up from select, 0/0/0 selected 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 processing 0 keys, 1 updates 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updateable 1 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - update Accept@71bc1044[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:53044]] 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-24] invocationID:{InvocationID} - queue Accept@71bc1044[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:53044]] startThread=0 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - updates 0 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-24] invocationID:{InvocationID} - Selector sun.nio.ch.EPollSelectorImpl@3f470e67 waiting with 1 keys 2021-08-25 07:23:52 168 DEBUG [org.eclipse.jetty.util.thread.QueuedThreadPool][dw-23] invocationID:{InvocationID} - run Accept@71bc1044[java.nio.channels.SocketChannel[connected local=/10.233.72.121:9101 remote=/10.233.72.27:53044]] in InstrumentedQueuedThreadPool[dw]@5e2a6991{STARTED,8<=8<=1024,i=4,r=1,q=0}[ReservedThreadExecutor@4e3283f6{s=1/1,p=0}] 2021-08-25 07:23:52 169 DEBUG [org.eclipse.jetty.io.IdleTimeout][dw-23] invocationID:{InvocationID} - SocketChannelEndPoint@73ea37c2{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000}{io=0/0,kio=0,kro=0}-> idle timeout check, elapsed: 0 ms, remaining: 30000 ms 2021-08-25 07:23:52 169 DEBUG [org.eclipse.jetty.util.ssl.SslContextFactory][dw-23] invocationID:{InvocationID} - Customize sun.security.ssl.SSLEngineImpl@9cedbdd 2021-08-25 07:23:52 169 DEBUG [org.eclipse.jetty.server.HttpChannel][dw-23] invocationID:{InvocationID} - new HttpChannelOverHttp@5973b934{s=HttpChannelState@29f3fda5{s=IDLE rs=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@b058b7e{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000},null,HttpChannelState@29f3fda5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0} 2021-08-25 07:23:52 169 DEBUG [org.eclipse.jetty.server.HttpConnection][dw-23] invocationID:{InvocationID} - New HTTP Connection HttpConnection@74eab9f0::DecryptedEndPoint@b058b7e{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:52 170 DEBUG [org.eclipse.jetty.io.ManagedSelector][dw-23] invocationID:{InvocationID} - Queued change lazy=true org.eclipse.jetty.io.ManagedSelector$$Lambda$509/0x0000000100648440@30141440 on ManagedSelector@16df9bde{STARTED} id=0 keys=1 selected=0 updates=0 2021-08-25 07:23:52 170 DEBUG [org.eclipse.jetty.io.AbstractEndPoint][dw-23] invocationID:{InvocationID} - onOpen SocketChannelEndPoint@73ea37c2{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@6bcd932{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@b058b7e{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@74eab9f0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2145ece0{s=START}]=>HttpChannelOverHttp@5973b934{s=HttpChannelState@29f3fda5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:52 170 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-23] invocationID:{InvocationID} - onOpen SslConnection@6bcd932::SocketChannelEndPoint@73ea37c2{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=1/30000}{io=0/0,kio=0,kro=0}->SslConnection@6bcd932{NOT_HANDSHAKING,eio=-1/-1,di=-1,fill=IDLE,flush=IDLE}~>DecryptedEndPoint@b058b7e{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000}=>HttpConnection@74eab9f0[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2145ece0{s=START}]=>HttpChannelOverHttp@5973b934{s=HttpChannelState@29f3fda5{s=IDLE rs=BLOCKING os=OPEN is=IDLE awp=false se=false i=true al=0},r=0,c=false/false,a=IDLE,uri=null,age=0} 2021-08-25 07:23:52 170 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-23] invocationID:{InvocationID} - onOpen HttpConnection@74eab9f0::DecryptedEndPoint@b058b7e{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:52 170 DEBUG [org.eclipse.jetty.io.AbstractConnection][dw-23] invocationID:{InvocationID} - fillInterested HttpConnection@74eab9f0::DecryptedEndPoint@b058b7e{l=/10.233.72.121:9101,r=/10.233.72.27:53044,OPEN,fill=-,flush=-,to=0/30000} 2021-08-25 07:23:52 170 DEBUG [org.eclipse.jetty.io.FillInterest][dw-23] invocationID:{InvocationID} - interested FillInterest@41f401{AC.ReadCB@74eab9f0{HttpConne