Skip to content

Instantly share code, notes, and snippets.

@cyrille-leclerc
Last active September 16, 2022 14:17
Show Gist options
  • Save cyrille-leclerc/f54a375ee804c9c6f6cd25df62128c16 to your computer and use it in GitHub Desktop.
Save cyrille-leclerc/f54a375ee804c9c6f6cd25df62128c16 to your computer and use it in GitHub Desktop.
cat 1_springboot_app.log.log | promtail --config.file 2_promtail.yml --stdin  --inspect -config.expand-env  -dry-run &> 3_promtail_dryrun_output.log
2022-05-30 17:08:56.997 INFO 71102 --- [main] c.m.ecommerce.ProductServiceImplTest : Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71102 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
2022-05-30 17:08:56.998 INFO 71102 --- [main] c.m.ecommerce.ProductServiceImplTest : No active profile set, falling back to 1 default profile: "default"
2022-05-30 17:08:57.879 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30 17:08:57.880 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-05-30 17:08:58.075 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 184 ms. Found 3 JPA repository interfaces.
2022-05-30 17:08:58.093 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30 17:08:58.094 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-05-30 17:08:58.115 INFO 71102 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:08:58.116 INFO 71102 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:08:58.116 INFO 71102 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:08:58.117 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
2022-05-30 17:08:58.768 INFO 71102 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 0 (http)
2022-05-30 17:08:58.781 INFO 71102 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-05-30 17:08:58.781 INFO 71102 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.63]
2022-05-30 17:08:58.906 INFO 71102 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-05-30 17:08:58.906 INFO 71102 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1882 ms
2022-05-30 17:08:59.281 INFO 71102 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-05-30 17:08:59.347 INFO 71102 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.9.Final
2022-05-30 17:08:59.534 INFO 71102 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-05-30 17:08:59.647 INFO 71102 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-05-30 17:08:59.769 INFO 71102 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-05-30 17:08:59.808 INFO 71102 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
2022-05-30 17:09:00.563 INFO 71102 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-05-30 17:09:00.571 INFO 71102 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-05-30 17:09:01.306 INFO 71102 --- [main] c.m.e.service.CheckoutServiceImpl : Checkout Service: localhost:50051
2022-05-30 17:09:01.336 INFO 71102 --- [main] c.m.e.controller.OrderController : Anti fraud service base url: http://localhost:8081
2022-05-30 17:09:01.620 INFO 71102 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2022-05-30 17:09:02.131 INFO 71102 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 14 endpoint(s) beneath base path '/actuator'
2022-05-30 17:09:02.204 INFO 71102 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 59818 (http) with context path ''
2022-05-30 17:09:02.216 INFO 71102 --- [main] c.m.ecommerce.ProductServiceImplTest : Started ProductServiceImplTest in 5.58 seconds (JVM running for 6.329)
2022-05-30 17:09:03.077 INFO 71102 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
2022-05-30 17:09:03.079 INFO 71102 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-05-30 17:09:03.087 INFO 71102 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-05-30 17:09:03.088 INFO 71102 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@e73787, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@395065af, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4de5d46c, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@304d6881, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@9af2a00, org.springframework.test.context.support.DirtiesContextTestExecutionListener@33684b87, org.springframework.test.context.transaction.TransactionalTestExecutionListener@50cdaf32, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@b1fccca, org.springframework.test.context.event.EventPublishingTestExecutionListener@7b900883, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@a555005, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@37dcda42, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@42d039ef, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@397ff526, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@190a5f74, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@48d588dd]
2022-05-30 17:09:03.375 INFO 71102 --- [http-nio-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-05-30 17:09:03.379 INFO 71102 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-05-30 17:09:03.381 INFO 71102 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
2022-05-30 17:09:03.893 INFO 71102 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-05-30 17:09:03.899 INFO 71102 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-05-30 17:09:03.906 INFO 71102 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-05-30 17:10:13.735 INFO 71487 --- [main] c.m.ecommerce.ProductServiceImplTest : Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71487 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
2022-05-30 17:10:13.737 INFO 71487 --- [main] c.m.ecommerce.ProductServiceImplTest : No active profile set, falling back to 1 default profile: "default"
2022-05-30 17:10:14.562 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30 17:10:14.563 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-05-30 17:10:14.758 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 185 ms. Found 3 JPA repository interfaces.
2022-05-30 17:10:14.776 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30 17:10:14.778 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-05-30 17:10:14.796 INFO 71487 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:10:14.796 INFO 71487 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:10:14.797 INFO 71487 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:10:14.797 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
2022-05-30 17:10:15.426 INFO 71487 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 0 (http)
2022-05-30 17:10:15.436 INFO 71487 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-05-30 17:10:15.437 INFO 71487 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.63]
2022-05-30 17:10:15.542 INFO 71487 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-05-30 17:10:15.542 INFO 71487 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1784 ms
2022-05-30 17:10:15.904 INFO 71487 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-05-30 17:10:15.961 INFO 71487 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.9.Final
2022-05-30 17:10:16.132 INFO 71487 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-05-30 17:10:16.223 INFO 71487 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-05-30 17:10:16.332 INFO 71487 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-05-30 17:10:16.369 INFO 71487 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
2022-05-30 17:10:17.015 INFO 71487 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-05-30 17:10:17.024 INFO 71487 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-05-30 17:10:17.717 INFO 71487 --- [main] c.m.e.service.CheckoutServiceImpl : Checkout Service: localhost:50051
2022-05-30 17:10:17.753 INFO 71487 --- [main] c.m.e.controller.OrderController : Anti fraud service base url: http://localhost:8081
2022-05-30 17:10:18.016 INFO 71487 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2022-05-30 17:10:18.503 INFO 71487 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 14 endpoint(s) beneath base path '/actuator'
2022-05-30 17:10:18.571 INFO 71487 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 59895 (http) with context path ''
2022-05-30 17:10:18.582 INFO 71487 --- [main] c.m.ecommerce.ProductServiceImplTest : Started ProductServiceImplTest in 5.198 seconds (JVM running for 5.905)
2022-05-30 17:10:19.278 INFO 71487 --- [main] c.m.e.service.ProductServiceImpl : Cache miss for product 1, load from database in 14ms
2022-05-30 17:10:19.333 INFO 71487 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
2022-05-30 17:10:19.333 INFO 71487 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-05-30 17:10:19.336 INFO 71487 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-05-30 17:10:19.336 INFO 71487 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f5293c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3f7e72a7, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@69bf351e, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@39ae0bff, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@654e793f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29e9d47b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39ee039d, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@705606ac, org.springframework.test.context.event.EventPublishingTestExecutionListener@66c70e18, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1ea44b7, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@48515dfc, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@8f2513c, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@561b39f4, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@587107c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@47fb038d]
2022-05-30 17:10:19.440 INFO 71487 --- [http-nio-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-05-30 17:10:19.441 INFO 71487 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-05-30 17:10:19.442 INFO 71487 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-05-30 17:10:19.752 INFO 71487 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-05-30 17:10:19.756 INFO 71487 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-05-30 17:10:19.761 INFO 71487 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-05-30 17:11:26.858 INFO 71935 --- [main] c.m.ecommerce.EcommerceApplication : Starting EcommerceApplication using Java 11.0.11 on MacBook-Pro.localdomain with PID 71935 (/Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java/target/frontend-1.0-SNAPSHOT.jar started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
2022-05-30 17:11:26.884 INFO 71935 --- [main] c.m.ecommerce.EcommerceApplication : No active profile set, falling back to 1 default profile: "default"
2022-05-30 17:11:29.777 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30 17:11:29.796 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-05-30 17:11:30.715 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 899 ms. Found 3 JPA repository interfaces.
2022-05-30 17:11:30.732 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30 17:11:30.734 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-05-30 17:11:30.759 INFO 71935 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:11:30.760 INFO 71935 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:11:30.761 INFO 71935 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30 17:11:30.762 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces.
2022-05-30 17:11:32.375 INFO 71935 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-05-30 17:11:32.413 INFO 71935 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-05-30 17:11:32.414 INFO 71935 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.63]
2022-05-30 17:11:32.514 INFO 71935 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-05-30 17:11:32.515 INFO 71935 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 5475 ms
2022-05-30 17:11:33.535 INFO 71935 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-05-30 17:11:33.974 INFO 71935 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.9.Final
2022-05-30 17:11:34.345 INFO 71935 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-05-30 17:11:34.589 INFO 71935 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-05-30 17:11:34.910 INFO 71935 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-05-30 17:11:35.033 INFO 71935 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
2022-05-30 17:11:36.704 INFO 71935 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-05-30 17:11:36.741 INFO 71935 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-05-30 17:11:38.355 INFO 71935 --- [main] c.m.e.service.CheckoutServiceImpl : Checkout Service: localhost:50051
2022-05-30 17:11:38.394 INFO 71935 --- [main] c.m.e.controller.OrderController : Anti fraud service base url: http://localhost:8081
2022-05-30 17:11:38.692 INFO 71935 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
2022-05-30 17:11:39.180 INFO 71935 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 14 endpoint(s) beneath base path '/actuator'
2022-05-30 17:11:39.276 INFO 71935 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-05-30 17:11:39.290 INFO 71935 --- [main] c.m.ecommerce.EcommerceApplication : Started EcommerceApplication in 13.555 seconds (JVM running for 17.282)
2022-05-30 17:11:53.764 INFO 71935 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-05-30 17:11:53.765 INFO 71935 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-05-30 17:11:53.767 INFO 71935 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-05-30 17:12:00.775 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.service.ProductServiceImpl : Cache miss for product 5, load from database in 6ms
2022-05-30 17:12:01.584 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314893
2022-05-30 18:00:08.620 WARN 71935 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=30m26s833ms).
2022-05-30 18:18:15.574 WARN 71935 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=17m6s919ms).
2022-05-30 18:28:13.633 WARN 71935 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=9m58s59ms).
2022-05-30 18:53:09.879 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.service.ProductServiceImpl : Cache miss for product 3, load from database in 38ms
2022-05-30 18:53:09.894 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.service.ProductServiceImpl : Cache miss for product 11, load from database in 2ms
2022-05-30 18:53:10.238 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.service.ProductServiceImpl : Cache miss for product 12, load from database in 1ms
2022-05-30 18:53:10.412 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.service.ProductServiceImpl : Cache miss for product 8, load from database in 1ms
2022-05-30 18:53:10.476 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.service.ProductServiceImpl : Cache miss for product 5, load from database in 1ms
2022-05-30 18:53:10.480 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314894
2022-05-30 18:53:10.519 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314895
2022-05-30 18:53:10.620 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314896
2022-05-30 18:53:10.621 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.service.ProductServiceImpl : Cache miss for product 10, load from database in 1ms
2022-05-30 18:53:10.654 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314897
2022-05-30 18:53:10.732 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.service.ProductServiceImpl : Cache miss for product 6, load from database in 1ms
2022-05-30 18:53:10.840 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314898
2022-05-30 18:53:11.143 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): price: 200.0, fraud.exception: ResourceAccessException / SocketTimeoutException with URL http://localhost:8081/fraud/checkOrder?orderPrice={q}&customerIpAddress={q}&shippingCountry={q}
2022-05-30 18:53:11.532 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314899
2022-05-30 18:53:11.686 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314900
2022-05-30 18:53:11.863 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.service.ProductServiceImpl : Cache miss for product 2, load from database in 0ms
2022-05-30 18:53:11.879 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314901
2022-05-30 18:53:13.079 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314902
2022-05-30 18:53:13.087 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314904
2022-05-30 18:53:13.087 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314903
2022-05-30 18:53:13.154 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.service.ProductServiceImpl : Cache miss for product 1, load from database in 2ms
2022-05-30 18:53:13.219 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314905
2022-05-30 18:53:13.536 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314906
2022-05-30 18:53:13.649 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314907
2022-05-30 18:53:13.812 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314908
2022-05-30 18:53:13.867 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314909
2022-05-30 18:53:14.231 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, fraud.exception:response-KO
2022-05-30 18:53:14.666 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314910
2022-05-30 18:53:14.725 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.service.ProductServiceImpl : Cache miss for product 4, load from database in 2ms
2022-05-30 18:53:15.276 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): price: 200.0, fraud.exception: ResourceAccessException / SocketTimeoutException with URL http://localhost:8081/fraud/checkOrder?orderPrice={q}&customerIpAddress={q}&shippingCountry={q}
2022-05-30 18:53:15.479 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314912
2022-05-30 18:53:15.506 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314913
2022-05-30 18:53:15.513 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314911
2022-05-30 18:53:15.555 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.service.ProductServiceImpl : Cache miss for product 9, load from database in 1ms
2022-05-30 18:53:15.577 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314914
2022-05-30 18:53:15.739 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314915
2022-05-30 18:53:16.157 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.service.ProductServiceImpl : Cache miss for product 7, load from database in 1ms
2022-05-30 18:53:16.369 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314916
2022-05-30 18:53:16.550 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4314917
2022-05-30 18:53:16.609 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314918
2022-05-30 18:53:16.809 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4314919
2022-05-30 18:53:16.882 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314920
2022-05-30 18:53:17.044 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314921
2022-05-30 18:53:17.073 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314922
2022-05-30 18:53:17.575 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314923
2022-05-30 18:53:17.666 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314924
2022-05-30 18:53:18.297 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314925
2022-05-30 18:53:18.328 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314926
2022-05-30 18:53:18.425 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314927
2022-05-30 18:53:18.917 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4314928
2022-05-30 18:53:19.527 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314929
2022-05-30 18:53:19.648 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314930
2022-05-30 18:53:20.234 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314931
2022-05-30 18:53:20.337 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314932
2022-05-30 18:53:20.383 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314933
2022-05-30 18:53:20.971 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314934
2022-05-30 18:53:20.997 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314935
2022-05-30 18:53:21.255 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314936
2022-05-30 18:53:21.531 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314937
2022-05-30 18:53:21.732 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314938
2022-05-30 18:53:21.741 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4314939
2022-05-30 18:53:21.761 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4314940
2022-05-30 18:53:22.240 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314941
2022-05-30 18:53:22.566 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314942
2022-05-30 18:53:22.838 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314943
2022-05-30 18:53:22.977 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314944
2022-05-30 18:53:23.088 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4314945
2022-05-30 18:53:23.133 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314946
2022-05-30 18:53:23.299 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314947
2022-05-30 18:53:23.482 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314948
2022-05-30 18:53:23.618 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314949
2022-05-30 18:53:24.730 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314950
2022-05-30 18:53:24.875 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314951
2022-05-30 18:53:25.275 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314952
2022-05-30 18:53:25.289 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314953
2022-05-30 18:53:25.750 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4314954
2022-05-30 18:53:25.807 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314955
2022-05-30 18:53:26.163 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314956
2022-05-30 18:53:26.164 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314958
2022-05-30 18:53:26.169 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314957
2022-05-30 18:53:26.546 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314959
2022-05-30 18:53:27.431 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314960
2022-05-30 18:53:27.571 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314961
2022-05-30 18:53:27.685 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314962
2022-05-30 18:53:27.740 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314963
2022-05-30 18:53:28.230 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314964
2022-05-30 18:53:28.356 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314966
2022-05-30 18:53:28.359 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4314965
2022-05-30 18:53:28.414 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4314967
2022-05-30 18:53:28.548 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
2022-05-30 18:53:28.665 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314968
2022-05-30 18:53:30.017 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314969
2022-05-30 18:53:30.456 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314970
2022-05-30 18:53:30.592 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4314971
2022-05-30 18:53:30.626 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314972
2022-05-30 18:53:30.755 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314973
2022-05-30 18:53:31.006 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314974
2022-05-30 18:53:31.055 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314975
2022-05-30 18:53:31.321 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314976
2022-05-30 18:53:31.408 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4314977
2022-05-30 18:53:31.906 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314978
2022-05-30 18:53:31.956 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314979
2022-05-30 18:53:32.619 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314980
2022-05-30 18:53:32.758 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314981
2022-05-30 18:53:33.268 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4314982
2022-05-30 18:53:33.323 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314983
2022-05-30 18:53:33.724 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4314984
2022-05-30 18:53:33.778 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314985
2022-05-30 18:53:33.834 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314987
2022-05-30 18:53:33.842 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314986
2022-05-30 18:53:33.894 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314988
2022-05-30 18:53:34.208 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314989
2022-05-30 18:53:34.315 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314990
2022-05-30 18:53:35.117 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4314991
2022-05-30 18:53:35.445 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314992
2022-05-30 18:53:35.664 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314993
2022-05-30 18:53:35.850 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314994
2022-05-30 18:53:35.974 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314995
2022-05-30 18:53:36.385 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314996
2022-05-30 18:53:36.534 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314997
2022-05-30 18:53:36.628 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314998
2022-05-30 18:53:36.921 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314999
2022-05-30 18:53:36.922 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315000
2022-05-30 18:53:36.974 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315001
2022-05-30 18:53:37.851 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315002
2022-05-30 18:53:37.872 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315003
2022-05-30 18:53:38.324 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315004
2022-05-30 18:53:38.480 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315005
2022-05-30 18:53:38.626 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315006
2022-05-30 18:53:39.035 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315007
2022-05-30 18:53:39.297 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315008
2022-05-30 18:53:39.400 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315009
2022-05-30 18:53:39.886 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315010
2022-05-30 18:53:40.369 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315011
2022-05-30 18:53:40.549 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315012
2022-05-30 18:53:41.033 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315013
2022-05-30 18:53:41.132 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315014
2022-05-30 18:53:41.188 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315015
2022-05-30 18:53:41.294 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315016
2022-05-30 18:53:41.680 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315017
2022-05-30 18:53:41.695 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315018
2022-05-30 18:53:41.797 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315019
2022-05-30 18:53:42.401 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315020
2022-05-30 18:53:42.830 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315021
2022-05-30 18:53:43.018 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315022
2022-05-30 18:53:43.251 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315023
2022-05-30 18:53:43.286 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315024
2022-05-30 18:53:43.419 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315025
2022-05-30 18:53:43.595 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315026
2022-05-30 18:53:44.069 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315027
2022-05-30 18:53:44.496 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315028
2022-05-30 18:53:44.777 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315029
2022-05-30 18:53:44.943 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315030
2022-05-30 18:53:45.476 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315031
2022-05-30 18:53:45.494 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315032
2022-05-30 18:53:45.537 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315033
2022-05-30 18:53:46.027 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315034
2022-05-30 18:53:46.282 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315035
2022-05-30 18:53:46.467 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315036
2022-05-30 18:53:46.497 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, fraud.exception:response-KO
2022-05-30 18:53:46.759 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315037
2022-05-30 18:53:47.040 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315038
2022-05-30 18:53:47.270 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315039
2022-05-30 18:53:47.388 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315040
2022-05-30 18:53:47.569 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315041
2022-05-30 18:53:47.997 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315042
2022-05-30 18:53:48.002 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315043
2022-05-30 18:53:48.003 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315044
2022-05-30 18:53:48.059 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315045
2022-05-30 18:53:48.185 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315046
2022-05-30 18:53:49.105 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315047
2022-05-30 18:53:49.550 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315048
2022-05-30 18:53:49.626 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315049
2022-05-30 18:53:50.510 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315050
2022-05-30 18:53:51.322 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315051
2022-05-30 18:53:51.395 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315052
2022-05-30 18:53:51.559 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, fraud.exception:response-KO
2022-05-30 18:53:51.792 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315053
2022-05-30 18:53:51.874 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315054
2022-05-30 18:53:51.906 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315055
2022-05-30 18:53:51.913 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315056
2022-05-30 18:53:52.054 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315057
2022-05-30 18:53:52.099 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315058
2022-05-30 18:53:53.025 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315059
2022-05-30 18:53:53.142 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315060
2022-05-30 18:53:53.680 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315061
2022-05-30 18:53:53.719 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
2022-05-30 18:53:53.728 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315062
2022-05-30 18:53:53.813 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
2022-05-30 18:53:53.867 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315063
2022-05-30 18:53:54.289 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, fraud.exception:response-KO
2022-05-30 18:53:54.812 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315064
2022-05-30 18:53:54.959 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315065
2022-05-30 18:53:55.600 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315066
2022-05-30 18:53:55.711 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315067
2022-05-30 18:53:55.752 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315068
2022-05-30 18:53:56.214 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315069
2022-05-30 18:53:56.331 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315070
2022-05-30 18:53:56.569 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315071
2022-05-30 18:53:56.878 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315072
2022-05-30 18:53:57.125 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315073
2022-05-30 18:53:57.256 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315074
2022-05-30 18:53:57.468 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315075
2022-05-30 18:53:57.810 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315076
2022-05-30 18:53:57.872 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315077
2022-05-30 18:53:57.909 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315078
2022-05-30 18:53:58.126 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315079
2022-05-30 18:53:58.539 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315080
2022-05-30 18:53:58.700 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315081
2022-05-30 18:53:59.164 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315082
2022-05-30 18:53:59.173 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315083
2022-05-30 18:53:59.488 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315084
2022-05-30 18:54:00.072 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315085
2022-05-30 18:54:00.600 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315086
2022-05-30 18:54:00.839 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315087
2022-05-30 18:54:00.855 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315089
2022-05-30 18:54:00.864 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315090
2022-05-30 18:54:00.880 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315088
2022-05-30 18:54:01.012 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315091
2022-05-30 18:54:01.329 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315093
2022-05-30 18:54:01.360 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315092
2022-05-30 18:54:01.414 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315094
2022-05-30 18:54:02.261 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315095
2022-05-30 18:54:02.648 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315096
2022-05-30 18:54:02.717 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315097
2022-05-30 18:54:02.906 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315098
2022-05-30 18:54:03.282 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315099
2022-05-30 18:54:03.307 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315100
2022-05-30 18:54:03.353 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315101
2022-05-30 18:54:03.612 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315102
2022-05-30 18:54:03.681 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315103
2022-05-30 18:54:04.272 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315104
2022-05-30 18:54:04.643 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315105
2022-05-30 18:54:04.969 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315106
2022-05-30 18:54:05.058 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315107
2022-05-30 18:54:05.943 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315108
2022-05-30 18:54:06.007 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315109
2022-05-30 18:54:06.627 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315110
2022-05-30 18:54:06.799 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315111
2022-05-30 18:54:07.001 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315112
2022-05-30 18:54:07.525 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315113
2022-05-30 18:54:07.573 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315115
2022-05-30 18:54:07.579 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315114
2022-05-30 18:54:07.598 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315117
2022-05-30 18:54:07.620 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315116
2022-05-30 18:54:08.139 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315118
2022-05-30 18:54:08.239 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315119
2022-05-30 18:54:08.622 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315120
2022-05-30 18:54:08.787 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315121
2022-05-30 18:54:09.188 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315122
2022-05-30 18:54:09.464 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315123
2022-05-30 18:54:09.530 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315124
2022-05-30 18:54:09.682 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315125
2022-05-30 18:54:10.347 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315126
2022-05-30 18:54:10.453 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315127
2022-05-30 18:54:10.606 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315128
2022-05-30 18:54:11.520 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315129
2022-05-30 18:54:11.530 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315130
2022-05-30 18:54:11.539 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315131
2022-05-30 18:54:11.661 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315132
2022-05-30 18:54:11.766 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315133
2022-05-30 18:54:12.131 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315134
2022-05-30 18:54:12.356 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315135
2022-05-30 18:54:12.840 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315136
2022-05-30 18:54:13.115 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315137
2022-05-30 18:54:13.238 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315138
2022-05-30 18:54:13.516 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315139
2022-05-30 18:54:14.025 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315140
2022-05-30 18:54:14.038 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315141
2022-05-30 18:54:14.175 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315142
2022-05-30 18:54:14.293 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315143
2022-05-30 18:54:14.463 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315144
2022-05-30 18:54:14.491 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315145
2022-05-30 18:54:14.638 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315146
2022-05-30 18:54:14.750 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315147
2022-05-30 18:54:16.044 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315148
2022-05-30 18:54:16.309 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315149
2022-05-30 18:54:16.390 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315150
2022-05-30 18:54:16.422 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315152
2022-05-30 18:54:16.439 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315151
2022-05-30 18:54:16.892 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315153
2022-05-30 18:54:16.912 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315154
2022-05-30 18:54:16.996 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315155
2022-05-30 18:54:17.123 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315156
2022-05-30 18:54:17.398 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315157
2022-05-30 18:54:17.978 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315158
2022-05-30 18:54:18.507 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315159
2022-05-30 18:54:18.760 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315160
2022-05-30 18:54:19.242 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315161
2022-05-30 18:54:19.417 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315163
2022-05-30 18:54:19.441 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315162
2022-05-30 18:54:19.690 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315164
2022-05-30 18:54:20.332 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315165
2022-05-30 18:54:20.506 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315166
2022-05-30 18:54:20.583 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
2022-05-30 18:54:21.050 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315167
2022-05-30 18:54:21.422 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315168
2022-05-30 18:54:21.567 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315169
2022-05-30 18:54:21.656 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
2022-05-30 18:54:21.658 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315170
2022-05-30 18:54:21.888 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315171
2022-05-30 18:54:22.357 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315172
2022-05-30 18:54:22.775 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315173
2022-05-30 18:54:22.906 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315174
2022-05-30 18:54:23.106 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315175
2022-05-30 18:54:23.156 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315176
2022-05-30 18:54:23.266 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315177
2022-05-30 18:54:23.466 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315178
2022-05-30 18:54:23.494 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315179
2022-05-30 18:54:23.628 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315180
2022-05-30 18:54:23.968 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
2022-05-30 18:54:24.781 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315181
2022-05-30 18:54:24.974 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315182
2022-05-30 18:54:25.211 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315183
2022-05-30 18:54:25.856 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315184
2022-05-30 18:54:25.877 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315185
2022-05-30 18:54:26.073 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315186
2022-05-30 18:54:26.227 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315187
2022-05-30 18:54:26.355 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315188
2022-05-30 18:54:26.395 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, fraud.exception:response-KO
2022-05-30 18:54:26.956 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315189
2022-05-30 18:54:27.414 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315190
2022-05-30 18:54:27.522 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315191
2022-05-30 18:54:27.823 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315192
2022-05-30 18:54:28.448 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315193
2022-05-30 18:54:28.589 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315195
2022-05-30 18:54:28.612 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315194
2022-05-30 18:54:28.661 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315196
2022-05-30 18:54:29.131 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315197
2022-05-30 18:54:29.176 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, fraud.exception:response-KO
2022-05-30 18:54:29.301 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315198
2022-05-30 18:54:29.447 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315199
2022-05-30 18:54:30.031 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315200
2022-05-30 18:54:30.101 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315201
2022-05-30 18:54:30.182 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315202
2022-05-30 18:54:30.589 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315203
2022-05-30 18:54:31.024 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315204
2022-05-30 18:54:31.257 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315205
2022-05-30 18:54:31.376 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315206
2022-05-30 18:54:31.817 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315207
2022-05-30 18:54:31.996 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315209
2022-05-30 18:54:32.021 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315208
2022-05-30 18:54:32.159 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315210
2022-05-30 18:54:32.808 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315211
2022-05-30 18:54:32.898 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315212
2022-05-30 18:54:33.578 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315213
2022-05-30 18:54:33.630 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315214
2022-05-30 18:54:33.677 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315215
2022-05-30 18:54:34.250 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315216
2022-05-30 18:54:34.258 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315217
2022-05-30 18:54:34.455 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315218
2022-05-30 18:54:34.500 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315219
2022-05-30 18:54:34.674 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315220
2022-05-30 18:54:34.816 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315221
2022-05-30 18:54:35.449 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315222
2022-05-30 18:54:35.492 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315223
2022-05-30 18:54:35.498 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315224
2022-05-30 18:54:35.896 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315225
2022-05-30 18:54:35.968 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315226
2022-05-30 18:54:36.493 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315227
2022-05-30 18:54:36.525 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315228
2022-05-30 18:54:36.852 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315229
2022-05-30 18:54:37.429 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315231
2022-05-30 18:54:37.466 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315230
2022-05-30 18:54:37.916 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315232
2022-05-30 18:54:38.290 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315233
2022-05-30 18:54:38.334 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315234
2022-05-30 18:54:38.414 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315235
2022-05-30 18:54:38.477 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315236
2022-05-30 18:54:38.489 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315237
2022-05-30 18:54:39.042 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315238
2022-05-30 18:54:40.191 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315239
2022-05-30 18:54:40.200 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315240
2022-05-30 18:54:40.229 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315241
2022-05-30 18:54:40.238 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315242
2022-05-30 18:54:40.702 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315243
2022-05-30 18:54:40.765 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315244
2022-05-30 18:54:41.307 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315245
2022-05-30 18:54:41.312 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315246
2022-05-30 18:54:41.483 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315247
2022-05-30 18:54:41.960 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315248
2022-05-30 18:54:42.072 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315249
2022-05-30 18:54:42.173 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315250
2022-05-30 18:54:42.403 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315251
2022-05-30 18:54:42.571 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315252
2022-05-30 18:54:42.815 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315253
2022-05-30 18:54:43.023 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315254
2022-05-30 18:54:43.071 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315255
2022-05-30 18:54:43.356 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315256
2022-05-30 18:54:43.359 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315257
2022-05-30 18:54:43.567 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315258
2022-05-30 18:54:44.445 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315259
2022-05-30 18:54:44.748 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315260
2022-05-30 18:54:44.957 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315261
2022-05-30 18:54:45.607 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315262
2022-05-30 18:54:45.772 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315263
2022-05-30 18:54:46.375 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315264
2022-05-30 18:54:46.559 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315265
2022-05-30 18:54:46.763 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315266
2022-05-30 18:54:46.772 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315267
2022-05-30 18:54:47.352 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315268
2022-05-30 18:54:47.449 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315269
2022-05-30 18:54:47.492 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315270
2022-05-30 18:54:47.663 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315271
2022-05-30 18:54:47.751 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315272
2022-05-30 18:54:47.944 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315273
2022-05-30 18:54:48.055 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315274
2022-05-30 18:54:48.457 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315275
2022-05-30 18:54:48.538 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315276
2022-05-30 18:54:48.588 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315277
2022-05-30 18:54:48.672 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315278
2022-05-30 18:54:49.606 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315279
2022-05-30 18:54:49.895 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315280
2022-05-30 18:54:50.090 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315281
2022-05-30 18:54:50.384 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315282
2022-05-30 18:54:50.561 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315283
2022-05-30 18:54:50.783 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315284
2022-05-30 18:54:50.872 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315285
2022-05-30 18:54:51.042 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315286
2022-05-30 18:54:51.558 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315287
2022-05-30 18:54:51.596 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315288
2022-05-30 18:54:51.717 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315289
2022-05-30 18:54:51.766 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315290
2022-05-30 18:54:51.844 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315291
2022-05-30 18:54:52.307 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315292
2022-05-30 18:54:52.681 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315293
2022-05-30 18:54:52.788 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315294
2022-05-30 18:54:53.105 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315295
2022-05-30 18:54:53.875 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315296
2022-05-30 18:54:54.274 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315297
2022-05-30 18:54:54.630 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315298
2022-05-30 18:54:55.032 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315299
2022-05-30 18:54:55.164 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315300
2022-05-30 18:54:55.214 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315301
2022-05-30 18:54:55.276 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315302
2022-05-30 18:54:55.500 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315303
2022-05-30 18:54:55.664 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315304
2022-05-30 18:54:55.690 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315305
2022-05-30 18:54:56.279 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315306
2022-05-30 18:54:56.837 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315307
2022-05-30 18:54:56.909 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315308
2022-05-30 18:54:56.963 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315309
2022-05-30 18:54:57.594 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315310
2022-05-30 18:54:57.866 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315311
2022-05-30 18:54:57.941 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315312
2022-05-30 18:54:58.027 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315313
2022-05-30 18:54:58.154 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315314
2022-05-30 18:54:58.163 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315315
2022-05-30 18:54:58.212 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315316
2022-05-30 18:54:58.247 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315317
2022-05-30 18:54:59.384 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315318
2022-05-30 18:54:59.978 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315319
2022-05-30 18:55:00.104 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315320
2022-05-30 18:55:00.363 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315321
2022-05-30 18:55:00.637 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315322
2022-05-30 18:55:00.834 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315323
2022-05-30 18:55:00.996 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315324
2022-05-30 18:55:01.121 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315325
2022-05-30 18:55:01.504 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315326
2022-05-30 18:55:01.571 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315327
2022-05-30 18:55:01.688 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315328
2022-05-30 18:55:01.899 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315329
2022-05-30 18:55:01.951 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315330
2022-05-30 18:55:02.597 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315331
2022-05-30 18:55:02.651 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315332
2022-05-30 18:55:02.895 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315333
2022-05-30 18:55:03.239 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315334
2022-05-30 18:55:03.293 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315335
2022-05-30 18:55:03.324 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315336
2022-05-30 18:55:03.964 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315337
2022-05-30 18:55:04.177 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315338
2022-05-30 18:55:04.809 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315339
2022-05-30 18:55:04.832 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315340
2022-05-30 18:55:05.159 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
2022-05-30 18:55:05.271 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315341
2022-05-30 18:55:05.740 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315342
2022-05-30 18:55:06.092 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315343
2022-05-30 18:55:06.122 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315344
2022-05-30 18:55:06.697 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315345
2022-05-30 18:55:06.863 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315346
2022-05-30 18:55:06.947 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315347
2022-05-30 18:55:07.027 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315348
2022-05-30 18:55:07.456 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315349
2022-05-30 18:55:07.755 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315350
2022-05-30 18:55:08.032 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315351
2022-05-30 18:55:08.068 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315352
2022-05-30 18:55:08.094 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315353
2022-05-30 18:55:08.998 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315354
2022-05-30 18:55:09.090 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315355
2022-05-30 18:55:09.340 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315356
2022-05-30 18:55:09.403 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, fraud.exception:response-KO
2022-05-30 18:55:09.407 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315357
2022-05-30 18:55:10.043 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315358
2022-05-30 18:55:10.447 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315359
2022-05-30 18:55:10.526 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315360
2022-05-30 18:55:10.677 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315361
2022-05-30 18:55:10.969 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315362
2022-05-30 18:55:11.214 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315363
2022-05-30 18:55:11.421 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315364
2022-05-30 18:55:11.525 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315365
2022-05-30 18:55:11.831 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315366
2022-05-30 18:55:12.412 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315367
2022-05-30 18:55:12.621 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315368
2022-05-30 18:55:12.631 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315369
2022-05-30 18:55:12.715 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315370
2022-05-30 18:55:12.844 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315371
2022-05-30 18:55:13.021 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315372
2022-05-30 18:55:13.022 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315373
2022-05-30 18:55:13.151 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315374
2022-05-30 18:55:14.214 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315375
2022-05-30 18:55:14.225 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315376
2022-05-30 18:55:14.238 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315377
2022-05-30 18:55:15.205 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315378
2022-05-30 18:55:15.505 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315379
2022-05-30 18:55:15.616 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315380
2022-05-30 18:55:15.671 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315381
2022-05-30 18:55:15.860 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315382
2022-05-30 18:55:15.946 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315383
2022-05-30 18:55:16.183 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315384
2022-05-30 18:55:16.479 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315385
2022-05-30 18:55:16.500 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315386
2022-05-30 18:55:16.852 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315387
2022-05-30 18:55:16.981 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315388
2022-05-30 18:55:17.492 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315389
2022-05-30 18:55:17.717 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315390
2022-05-30 18:55:17.999 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315391
2022-05-30 18:55:18.071 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315392
2022-05-30 18:55:18.195 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315393
2022-05-30 18:55:18.523 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315394
2022-05-30 18:55:18.786 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315395
2022-05-30 18:55:19.190 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315396
2022-05-30 18:55:20.063 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315397
2022-05-30 18:55:20.377 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315398
2022-05-30 18:55:20.575 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315399
2022-05-30 18:55:20.631 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315400
2022-05-30 18:55:20.718 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315401
2022-05-30 18:55:20.844 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315402
2022-05-30 18:55:21.268 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315403
2022-05-30 18:55:21.305 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315404
2022-05-30 18:55:21.521 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, fraud.exception:response-KO
2022-05-30 18:55:22.071 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315405
2022-05-30 18:55:22.335 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315406
2022-05-30 18:55:22.472 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315407
2022-05-30 18:55:22.679 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315408
2022-05-30 18:55:22.763 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315409
2022-05-30 18:55:22.788 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315410
2022-05-30 18:55:23.021 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315412
2022-05-30 18:55:23.023 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315411
2022-05-30 18:55:23.255 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315413
2022-05-30 18:55:23.444 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315414
2022-05-30 18:55:23.777 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315415
2022-05-30 18:55:24.555 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315416
2022-05-30 18:55:25.710 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315417
2022-05-30 18:55:25.930 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315418
2022-05-30 18:55:26.092 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315419
2022-05-30 18:55:26.225 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315420
2022-05-30 18:55:26.304 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315421
2022-05-30 18:55:26.493 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315422
2022-05-30 18:55:26.621 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315423
2022-05-30 18:55:27.060 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, fraud.exception:response-KO
2022-05-30 18:55:27.089 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315424
2022-05-30 18:55:27.216 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315425
2022-05-30 18:55:27.625 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315426
2022-05-30 18:55:27.718 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315428
2022-05-30 18:55:27.722 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315427
2022-05-30 18:55:27.856 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315429
2022-05-30 18:55:27.976 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315430
2022-05-30 18:55:28.042 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315431
2022-05-30 18:55:28.439 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315432
2022-05-30 18:55:28.455 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315433
2022-05-30 18:55:29.230 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315434
2022-05-30 18:55:29.791 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315435
2022-05-30 18:55:30.090 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315436
2022-05-30 18:55:30.578 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315437
2022-05-30 18:55:30.639 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315438
2022-05-30 18:55:30.852 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315439
2022-05-30 18:55:30.985 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315440
2022-05-30 18:55:31.293 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315441
2022-05-30 18:55:31.657 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315442
2022-05-30 18:55:32.004 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315443
2022-05-30 18:55:32.268 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315444
2022-05-30 18:55:32.301 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315445
2022-05-30 18:55:32.351 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315446
2022-05-30 18:55:32.479 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315447
2022-05-30 18:55:32.908 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315448
2022-05-30 18:55:33.063 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315450
2022-05-30 18:55:33.081 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315449
2022-05-30 18:55:33.454 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315451
2022-05-30 18:55:33.566 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315452
2022-05-30 18:55:33.604 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
2022-05-30 18:55:34.170 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315453
2022-05-30 18:55:34.796 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315454
2022-05-30 18:55:35.071 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315455
2022-05-30 18:55:35.271 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315456
2022-05-30 18:55:35.483 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315457
2022-05-30 18:55:36.048 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315458
2022-05-30 18:55:36.121 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315459
2022-05-30 18:55:36.240 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315460
2022-05-30 18:55:36.512 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315461
2022-05-30 18:55:36.699 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315462
2022-05-30 18:55:36.955 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315463
2022-05-30 18:55:37.215 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315464
2022-05-30 18:55:37.432 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315465
2022-05-30 18:55:37.708 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315466
2022-05-30 18:55:37.763 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315467
2022-05-30 18:55:37.853 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315468
2022-05-30 18:55:37.951 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315469
2022-05-30 18:55:38.021 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315471
2022-05-30 18:55:38.021 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315470
2022-05-30 18:55:38.082 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315472
2022-05-30 18:55:39.271 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315473
2022-05-30 18:55:40.063 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315474
2022-05-30 18:55:40.087 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315475
2022-05-30 18:55:40.198 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315476
2022-05-30 18:55:40.245 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315477
2022-05-30 18:55:40.387 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315478
2022-05-30 18:55:40.569 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315479
2022-05-30 18:55:40.678 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315480
2022-05-30 18:55:40.897 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315481
2022-05-30 18:55:41.190 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315482
2022-05-30 18:55:41.259 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315483
2022-05-30 18:55:41.908 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315484
2022-05-30 18:55:42.082 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315485
2022-05-30 18:55:42.126 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315486
2022-05-30 18:55:42.420 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315487
2022-05-30 18:55:42.910 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315488
2022-05-30 18:55:42.925 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315489
2022-05-30 18:55:43.059 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315490
2022-05-30 18:55:43.104 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315491
2022-05-30 18:55:43.394 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315492
2022-05-30 18:55:43.891 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315493
2022-05-30 23:37:56.598 INFO 71935 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-05-30 23:37:56.629 INFO 71935 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-05-30 23:37:56.655 INFO 71935 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
server:
http_listen_port: 0
grpc_listen_port: 0
positions:
filename: /tmp/positions.yaml
clients:
- basic_auth:
password: ${LOKI_PASSWORD}
username: ${LOKI_USERNAME}
url: ${LOKI_URL}
- url: http://localhost:3100/loki/api/v1/push
scrape_configs:
- job_name: my_shopping_cart_frontend
pipeline_stages:
# 2022-09-08 17:51:20.963 INFO 22952 --- [main] c.m.ecommerce.EcommerceApplication : Starting EcommerceApplication using Java 11.0.11 on cyrillerclaptop with PID 22952 (/Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java/target/frontend-1.0-SNAPSHOT.jar started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
# %d{${LOG_DATEFORMAT_PATTERN:-yyyy-MM-dd'T'HH:mm:ss.SSSXXX}} ${LOG_LEVEL_PATTERN:-%5p} ${PID:- } --- [%t] %-40.40logger{39} : %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}}
# https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/defaults.xml
- multiline:
firstline: ^\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}.\d{3}\s
- regex:
expression: ^(?P<timestamp>\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}.\d{3})\s+(?P<severity_text>[^\s]+)\s+(?P<process_id>\d+)\s*---\s*\[(?P<thread_name>\w*)\]\s*(?P<instrumentation_scope>[\w._]*)\s*:\s(?P<message>(?:.*))
- labels:
severity_text:
thread_name:
instrumentation_scope:
process_id:
- timestamp:
source: timestamp
format: '2006-01-02 15:04:05.000'
- output:
source: message
static_configs:
- targets:
- localhost
labels:
__path__: /usr/local/var/log/my-shopping-cart/frontend.log
instance: cyrillerclaptop
job: my_shopping_cart_frontend
Clients configured:
----------------------
url: https://logs-prod-eu-west-0.grafana.net/loki/api/v1/push
batchwait: 1s
batchsize: 1048576
basic_auth:
username: "233254"
password: <secret>
follow_redirects: false
backoff_config:
min_period: 500ms
max_period: 5m0s
max_retries: 10
timeout: 10s
tenant_id: ""
stream_lag_labels: ""
----------------------
url: http://localhost:3100/loki/api/v1/push
batchwait: 1s
batchsize: 1048576
follow_redirects: false
backoff_config:
min_period: 500ms
max_period: 5m0s
max_retries: 10
timeout: 10s
tenant_id: ""
stream_lag_labels: ""
level=info ts=2022-09-16T12:57:18.212247Z caller=server.go:288 http=[::]:57876 grpc=[::]:57877 msg="server listening on addresses"
level=info ts=2022-09-16T12:57:18.215354Z caller=main.go:121 msg="Starting Promtail" version="(version=, branch=, revision=)"
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.ProductServiceImplTest
{stages.Entry}.Extracted["message"]:
+: Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71102 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:56.997
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.ProductServiceImplTest
{stages.Entry}.Extracted["message"]:
+: No active profile set, falling back to 1 default profile: "default"
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:56.998
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Multiple Spring Data modules found, entering strict repository configuration mode!
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:57.879
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.211306 +0200 CEST
+: 2022-05-30 17:08:56.997 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Bootstrapping Spring Data JPA repositories in DEFAULT mode.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:57.880
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.211312 +0200 CEST
+: 2022-05-30 17:08:56.998 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:56.997 INFO 71102 --- [main] c.m.ecommerce.ProductServiceImplTest : Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71102 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
+: Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71102 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:56.998 INFO 71102 --- [main] c.m.ecommerce.ProductServiceImplTest : No active profile set, falling back to 1 default profile: "default"
+: No active profile set, falling back to 1 default profile: "default"
2022-05-30T17:08:56.997+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71102 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
2022-05-30T17:08:56.998+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} No active profile set, falling back to 1 default profile: "default"
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.21132 +0200 CEST
+: 2022-05-30 17:08:57.879 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Finished Spring Data repository scanning in 184 ms. Found 3 JPA repository interfaces.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.075
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.21133 +0200 CEST
+: 2022-05-30 17:08:57.88 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:57.879 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
+: Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
2022-05-30T17:08:57.879+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Multiple Spring Data modules found, entering strict repository configuration mode![inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Multiple Spring Data modules found, entering strict repository configuration mode!
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.093
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:57.880 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
+: Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-05-30T17:08:57.88+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.213164 +0200 CEST
+: 2022-05-30 17:08:58.075 +0000 UTC
Bootstrapping Spring Data JPA repositories in DEFAULT mode.
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Bootstrapping Spring Data Redis repositories in DEFAULT mode.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.094
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.075 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 184 ms. Found 3 JPA repository interfaces.
+: Finished Spring Data repository scanning in 184 ms. Found 3 JPA repository interfaces.
2022-05-30T17:08:58.075+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Finished Spring Data repository scanning in 184 ms. Found 3 JPA repository interfaces.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.21317 +0200 CEST
+: 2022-05-30 17:08:58.093 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.115
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.093 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
+: Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.213673 +0200 CEST
+: 2022-05-30 17:08:58.094 +0000 UTC
2022-05-30T17:08:58.093+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.094 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+: Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-05-30T17:08:58.094+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Bootstrapping Spring Data Redis repositories in DEFAULT mode.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.223891 +0200 CEST
+: 2022-05-30 17:08:58.115 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.116
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.116
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.115 INFO 71102 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:08:58.115+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.117
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.22523 +0200 CEST
+: 2022-05-30 17:08:58.116 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.226237 +0200 CEST
+: 2022-05-30 17:08:58.116 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.w.embedded.tomcat.TomcatWebServer
{stages.Entry}.Extracted["message"]:
+: Tomcat initialized with port(s): 0 (http)
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.768
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.116 INFO 71102 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
2022-05-30T17:08:58.116+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.apache.catalina.core.StandardService
{stages.Entry}.Extracted["message"]:
+: Starting service [Tomcat]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.781
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.116 INFO 71102 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:08:58.116+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.226812 +0200 CEST
+: 2022-05-30 17:08:58.117 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.227005 +0200 CEST
+: 2022-05-30 17:08:58.768 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.apache.catalina.core.StandardEngine
{stages.Entry}.Extracted["message"]:
+: Starting Servlet engine: [Apache Tomcat/9.0.63]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.781
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.117 INFO 71102 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
+: Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.apache.catalina.core.StandardService", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
2022-05-30T17:08:58.117+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.768 INFO 71102 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 0 (http)
+: Tomcat initialized with port(s): 0 (http)
[inspect: regex stage]: none
2022-05-30T17:08:58.768+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Tomcat initialized with port(s): 0 (http)
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.apache.catalina.core.StandardEngine", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.227254 +0200 CEST
+: 2022-05-30 17:08:58.781 +0000 UTC
[inspect: labels stage]: none
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: w.s.c.ServletWebServerApplicationContext
{stages.Entry}.Extracted["message"]:
+: Root WebApplicationContext: initialization completed in 1882 ms
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:58.906
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.781 INFO 71102 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
+: Starting service [Tomcat]
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.227674 +0200 CEST
+: 2022-05-30 17:08:58.781 +0000 UTC
2022-05-30T17:08:58.781+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.apache.catalina.core.StandardService", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}Starting service [Tomcat]
[inspect: timestamp stage]: none
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.hibernate.jpa.internal.util.LogHelper
{stages.Entry}.Extracted["message"]:
+: HHH000204: Processing PersistenceUnitInfo [name: default]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:59.281
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.781 INFO 71102 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.63]
+: Starting Servlet engine: [Apache Tomcat/9.0.63]
2022-05-30T17:08:58.781+0000[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="w.s.c.ServletWebServerApplicationContext", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.apache.catalina.core.StandardEngine", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Starting Servlet engine: [Apache Tomcat/9.0.63]
[inspect: output stage]: none
2022-09-16T14:57:18.228268+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:08:58.906 INFO 71102 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.hibernate.Version
{stages.Entry}.Extracted["message"]:
+: HHH000412: Hibernate ORM core version 5.6.9.Final
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:59.347
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.jpa.internal.util.LogHelper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.229784 +0200 CEST
+: 2022-05-30 17:08:58.906 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.hibernate.annotations.common.Version
{stages.Entry}.Extracted["message"]:
+: HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:59.534
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:58.906 INFO 71102 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1882 ms
+: Root WebApplicationContext: initialization completed in 1882 ms
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.230195 +0200 CEST
+: 2022-05-30 17:08:59.281 +0000 UTC
2022-05-30T17:08:58.906+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="w.s.c.ServletWebServerApplicationContext", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Root WebApplicationContext: initialization completed in 1882 ms
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.Version", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:59.281 INFO 71102 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
+: HHH000204: Processing PersistenceUnitInfo [name: default]
2022-05-30T17:08:59.281+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.jpa.internal.util.LogHelper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.230528 +0200 CEST
+: 2022-05-30 17:08:59.347 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.annotations.common.Version", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
HHH000204: Processing PersistenceUnitInfo [name: default][inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Starting...
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:59.647
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:59.347 INFO 71102 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.9.Final
+: HHH000412: Hibernate ORM core version 5.6.9.Final
2022-05-30T17:08:59.347+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.Version", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} HHH000412: Hibernate ORM core version 5.6.9.Final
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.230771 +0200 CEST
+: 2022-05-30 17:08:59.534 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Start completed.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:59.769
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:59.534 INFO 71102 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
+: HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-05-30T17:08:59.534+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.annotations.common.Version", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.hibernate.dialect.Dialect
{stages.Entry}.Extracted["message"]:
+: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:08:59.808
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.231101 +0200 CEST
+: 2022-05-30 17:08:59.647 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.h.e.t.j.p.i.JtaPlatformInitiator
{stages.Entry}.Extracted["message"]:
+: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:00.563
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:59.647 INFO 71102 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
+: HikariPool-1 - Starting...
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.dialect.Dialect", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
2022-05-30T17:08:59.647+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} HikariPool-1 - Starting...
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.23134 +0200 CEST
+: 2022-05-30 17:08:59.769 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: j.LocalContainerEntityManagerFactoryBean
{stages.Entry}.Extracted["message"]:
+: Initialized JPA EntityManagerFactory for persistence unit 'default'
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:00.571
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:59.769 INFO 71102 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
+: HikariPool-1 - Start completed.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.h.e.t.j.p.i.JtaPlatformInitiator", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
2022-05-30T17:08:59.769+0000[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.231637 +0200 CEST
+: 2022-05-30 17:08:59.808 +0000 UTC
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} HikariPool-1 - Start completed.
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:08:59.808 INFO 71102 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
+: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
2022-05-30T17:08:59.808+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.dialect.Dialect", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.service.CheckoutServiceImpl
{stages.Entry}.Extracted["message"]:
+: Checkout Service: localhost:50051
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:01.306
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.231862 +0200 CEST
+: 2022-05-30 17:09:00.563 +0000 UTC
HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:00.563 INFO 71102 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
+: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-05-30T17:09:00.563+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.h.e.t.j.p.i.JtaPlatformInitiator", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.controller.OrderController
{stages.Entry}.Extracted["message"]:
+: Anti fraud service base url: http://localhost:8081
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:01.336
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.CheckoutServiceImpl", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.232141 +0200 CEST
+: 2022-05-30 17:09:00.571 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.232499 +0200 CEST
+: 2022-05-30 17:09:01.306 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.a.w.s.WelcomePageHandlerMapping
{stages.Entry}.Extracted["message"]:
+: Adding welcome page: class path resource [static/index.html]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:01.620
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:00.571 INFO 71102 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
+: Initialized JPA EntityManagerFactory for persistence unit 'default'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.controller.OrderController", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
2022-05-30T17:09:00.571+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Initialized JPA EntityManagerFactory for persistence unit 'default'
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.232798 +0200 CEST
+: 2022-05-30 17:09:01.336 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:01.306 INFO 71102 --- [main] c.m.e.service.CheckoutServiceImpl : Checkout Service: localhost:50051
+: Checkout Service: localhost:50051
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.a.e.web.EndpointLinksResolver
{stages.Entry}.Extracted["message"]:
+: Exposing 14 endpoint(s) beneath base path '/actuator'
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:02.131
2022-05-30T17:09:01.306+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.CheckoutServiceImpl", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Checkout Service: localhost:50051
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.w.s.WelcomePageHandlerMapping", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:01.336 INFO 71102 --- [main] c.m.e.controller.OrderController : Anti fraud service base url: http://localhost:8081
+: Anti fraud service base url: http://localhost:8081
2022-05-30T17:09:01.336+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.controller.OrderController", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Anti fraud service base url: http://localhost:8081
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.232971 +0200 CEST
+: 2022-05-30 17:09:01.62 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.e.web.EndpointLinksResolver", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.w.embedded.tomcat.TomcatWebServer
{stages.Entry}.Extracted["message"]:
+: Tomcat started on port(s): 59818 (http) with context path ''
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:02.204
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:01.620 INFO 71102 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
+: Adding welcome page: class path resource [static/index.html]
2022-05-30T17:09:01.62+0000[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.233294 +0200 CEST
+: 2022-05-30 17:09:02.131 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.ProductServiceImplTest
{stages.Entry}.Extracted["message"]:
+: Started ProductServiceImplTest in 5.58 seconds (JVM running for 6.329)
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:02.216
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.w.s.WelcomePageHandlerMapping", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Adding welcome page: class path resource [static/index.html]
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:02.131 INFO 71102 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 14 endpoint(s) beneath base path '/actuator'
+: Exposing 14 endpoint(s) beneath base path '/actuator'
2022-05-30T17:09:02.131+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.e.web.EndpointLinksResolver", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Exposing 14 endpoint(s) beneath base path '/actuator'
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.23356 +0200 CEST
+: 2022-05-30 17:09:02.204 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .b.t.c.SpringBootTestContextBootstrapper
{stages.Entry}.Extracted["message"]:
+: Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.077
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:02.204 INFO 71102 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 59818 (http) with context path ''
+: Tomcat started on port(s): 59818 (http) with context path ''
2022-05-30T17:09:02.204+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Tomcat started on port(s): 59818 (http) with context path ''
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.234983 +0200 CEST
+: 2022-05-30 17:09:02.216 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.t.c.support.AbstractContextLoader
{stages.Entry}.Extracted["message"]:
+: Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.079
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:02.216 INFO 71102 --- [main] c.m.ecommerce.ProductServiceImplTest : Started ProductServiceImplTest in 5.58 seconds (JVM running for 6.329)
+: Started ProductServiceImplTest in 5.58 seconds (JVM running for 6.329)
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.t.c.support.AbstractContextLoader", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.235272 +0200 CEST
+: 2022-05-30 17:09:03.077 +0000 UTC
2022-05-30T17:09:02.216+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Started ProductServiceImplTest in 5.58 seconds (JVM running for 6.329)
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .b.t.c.SpringBootTestContextBootstrapper
{stages.Entry}.Extracted["message"]:
+: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.087
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.077 INFO 71102 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
+: Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.235622 +0200 CEST
+: 2022-05-30 17:09:03.079 +0000 UTC
2022-05-30T17:09:03.077+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .b.t.c.SpringBootTestContextBootstrapper
{stages.Entry}.Extracted["message"]:
+: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@e73787, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@395065af, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4de5d46c, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@304d6881, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@9af2a00, org.springframework.test.context.support.DirtiesContextTestExecutionListener@33684b87, org.springframework.test.context.transaction.TransactionalTestExecutionListener@50cdaf32, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@b1fccca, org.springframework.test.context.event.EventPublishingTestExecutionListener@7b900883, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@a555005, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@37dcda42, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@42d039ef, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@397ff526, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@190a5f74, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@48d588dd]
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.088
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.079 INFO 71102 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
+: Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-05-30T17:09:03.079+0000 [inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.t.c.support.AbstractContextLoader", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
[inspect: regex stage]: none
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.236112 +0200 CEST
+: 2022-05-30 17:09:03.087 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"}
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.236512 +0200 CEST
+: 2022-05-30 17:09:03.088 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.087 INFO 71102 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
+: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-05-30T17:09:03.087+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.088 INFO 71102 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@e73787, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@395065af, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4de5d46c, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@304d6881, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@9af2a00, org.springframework.test.context.support.DirtiesContextTestExecutionListener@33684b87, org.springframework.test.context.transaction.TransactionalTestExecutionListener@50cdaf32, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@b1fccca, org.springframework.test.context.event.EventPublishingTestExecutionListener@7b900883, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@a555005, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@37dcda42, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@42d039ef, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@397ff526, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@190a5f74, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@48d588dd]
+: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@e73787, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@395065af, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4de5d46c, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@304d6881, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@9af2a00, org.springframework.test.context.support.DirtiesContextTestExecutionListener@33684b87, org.springframework.test.context.transaction.TransactionalTestExecutionListener@50cdaf32, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@b1fccca, org.springframework.test.context.event.EventPublishingTestExecutionListener@7b900883, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@a555005, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@37dcda42, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@42d039ef, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@397ff526, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@190a5f74, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@48d588dd]
2022-05-30T17:09:03.088+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="main"} Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@e73787, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@395065af, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4de5d46c, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@304d6881, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@9af2a00, org.springframework.test.context.support.DirtiesContextTestExecutionListener@33684b87, org.springframework.test.context.transaction.TransactionalTestExecutionListener@50cdaf32, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@b1fccca, org.springframework.test.context.event.EventPublishingTestExecutionListener@7b900883, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@a555005, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@37dcda42, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@42d039ef, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@397ff526, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@190a5f74, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@48d588dd]
[inspect: output stage]: none
2022-09-16T14:57:18.237379+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:09:03.375 INFO 71102 --- [http-nio-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
[inspect: labels stage]: none
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: j.LocalContainerEntityManagerFactoryBean
{stages.Entry}.Extracted["message"]:
+: Closing JPA EntityManagerFactory for persistence unit 'default'
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.893
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.23738+0200[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:09:03.379 INFO 71102 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Shutdown initiated...
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.899
[inspect: output stage]: none
2022-09-16T14:57:18.237618+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:09:03.381 INFO 71102 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.237951 +0200 CEST
+: 2022-05-30 17:09:03.893 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Shutdown completed.
{stages.Entry}.Extracted["process_id"]:
+: 71102
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:09:03.906
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.893 INFO 71102 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
+: Closing JPA EntityManagerFactory for persistence unit 'default'
2022-05-30T17:09:03.893+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} Closing JPA EntityManagerFactory for persistence unit 'default'
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.238324 +0200 CEST
+: 2022-05-30 17:09:03.899 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.ProductServiceImplTest
{stages.Entry}.Extracted["message"]:
+: Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71487 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:13.735
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.ProductServiceImplTest
{stages.Entry}.Extracted["message"]:
+: No active profile set, falling back to 1 default profile: "default"
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:13.737
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.899 INFO 71102 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
+: HikariPool-1 - Shutdown initiated...
2022-05-30T17:09:03.899+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} HikariPool-1 - Shutdown initiated...
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.239031 +0200 CEST
+: 2022-05-30 17:09:03.906 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:09:03.906 INFO 71102 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
+: HikariPool-1 - Shutdown completed.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.239774 +0200 CEST
+: 2022-05-30 17:10:13.735 +0000 UTC
2022-05-30T17:09:03.906+0000[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71102", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} HikariPool-1 - Shutdown completed.
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Multiple Spring Data modules found, entering strict repository configuration mode!
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.562
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:13.735 INFO 71487 --- [main] c.m.ecommerce.ProductServiceImplTest : Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71487 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
+: Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71487 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
2022-05-30T17:10:13.735+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Starting ProductServiceImplTest using Java 11.0.11 on MacBook-Pro.localdomain with PID 71487 (started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Bootstrapping Spring Data JPA repositories in DEFAULT mode.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.563
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.24055 +0200 CEST
+: 2022-05-30 17:10:13.737 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:13.737 INFO 71487 --- [main] c.m.ecommerce.ProductServiceImplTest : No active profile set, falling back to 1 default profile: "default"
+: No active profile set, falling back to 1 default profile: "default"
2022-05-30T17:10:13.737+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} No active profile set, falling back to 1 default profile: "default"
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Finished Spring Data repository scanning in 185 ms. Found 3 JPA repository interfaces.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.758
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.241356 +0200 CEST
+: 2022-05-30 17:10:14.562 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.24198 +0200 CEST
+: 2022-05-30 17:10:14.563 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Multiple Spring Data modules found, entering strict repository configuration mode!
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.776
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.562 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
+: Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30T17:10:14.562+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.563 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
+: Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-05-30T17:10:14.563+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Bootstrapping Spring Data JPA repositories in DEFAULT mode.
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Bootstrapping Spring Data Redis repositories in DEFAULT mode.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.778
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.242892 +0200 CEST
+: 2022-05-30 17:10:14.758 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.758 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 185 ms. Found 3 JPA repository interfaces.
+: Finished Spring Data repository scanning in 185 ms. Found 3 JPA repository interfaces.
2022-05-30T17:10:14.758+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Finished Spring Data repository scanning in 185 ms. Found 3 JPA repository interfaces.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.243324 +0200 CEST
+: 2022-05-30 17:10:14.776 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.796
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.776 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
+: Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.243803 +0200 CEST
+: 2022-05-30 17:10:14.778 +0000 UTC
2022-05-30T17:10:14.776+0000[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.796
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.778 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+: Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-05-30T17:10:14.778+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Bootstrapping Spring Data Redis repositories in DEFAULT mode.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.24446 +0200 CEST
+: 2022-05-30 17:10:14.796 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.797
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:14.797
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.796 INFO 71487 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:10:14.796+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.246144 +0200 CEST
+: 2022-05-30 17:10:14.796 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.796 INFO 71487 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:10:14.796+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.w.embedded.tomcat.TomcatWebServer
{stages.Entry}.Extracted["message"]:
+: Tomcat initialized with port(s): 0 (http)
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:15.426
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.246557 +0200 CEST
+: 2022-05-30 17:10:14.797 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.246933 +0200 CEST
+: 2022-05-30 17:10:14.797 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.apache.catalina.core.StandardService
{stages.Entry}.Extracted["message"]:
+: Starting service [Tomcat]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:15.436
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.797 INFO 71487 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:10:14.797+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:14.797 INFO 71487 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
+: Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
2022-05-30T17:10:14.797+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces.
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.apache.catalina.core.StandardEngine
{stages.Entry}.Extracted["message"]:
+: Starting Servlet engine: [Apache Tomcat/9.0.63]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:15.437
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.247343 +0200 CEST
+: 2022-05-30 17:10:15.426 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.apache.catalina.core.StandardService", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:15.426 INFO 71487 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 0 (http)
+: Tomcat initialized with port(s): 0 (http)
2022-05-30T17:10:15.426+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Tomcat initialized with port(s): 0 (http)
[inspect: regex stage]: none
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.apache.catalina.core.StandardEngine", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.248137 +0200 CEST
+: 2022-05-30 17:10:15.436 +0000 UTC
[inspect: labels stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:15.436 INFO 71487 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
+: Starting service [Tomcat]
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.248541 +0200 CEST
+: 2022-05-30 17:10:15.437 +0000 UTC
2022-05-30T17:10:15.436+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.apache.catalina.core.StandardService", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}Starting service [Tomcat]
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: w.s.c.ServletWebServerApplicationContext
{stages.Entry}.Extracted["message"]:
+: Root WebApplicationContext: initialization completed in 1784 ms
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:15.542
[inspect: timestamp stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:15.437 INFO 71487 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.63]
+: Starting Servlet engine: [Apache Tomcat/9.0.63]
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.hibernate.jpa.internal.util.LogHelper
{stages.Entry}.Extracted["message"]:
+: HHH000204: Processing PersistenceUnitInfo [name: default]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:15.904
2022-05-30T17:10:15.437+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.apache.catalina.core.StandardEngine", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Starting Servlet engine: [Apache Tomcat/9.0.63]
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="w.s.c.ServletWebServerApplicationContext", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]: none
2022-09-16T14:57:18.248823+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:10:15.542 INFO 71487 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.jpa.internal.util.LogHelper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.hibernate.Version
{stages.Entry}.Extracted["message"]:
+: HHH000412: Hibernate ORM core version 5.6.9.Final
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:15.961
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.249358 +0200 CEST
+: 2022-05-30 17:10:15.542 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.249768 +0200 CEST
+: 2022-05-30 17:10:15.904 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:15.542 INFO 71487 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1784 ms
+: Root WebApplicationContext: initialization completed in 1784 ms
2022-05-30T17:10:15.542+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="w.s.c.ServletWebServerApplicationContext", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Root WebApplicationContext: initialization completed in 1784 ms[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.Version", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.hibernate.annotations.common.Version
{stages.Entry}.Extracted["message"]:
+: HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:16.132
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:15.904 INFO 71487 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
+: HHH000204: Processing PersistenceUnitInfo [name: default]
2022-05-30T17:10:15.904+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.jpa.internal.util.LogHelper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} HHH000204: Processing PersistenceUnitInfo [name: default]
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Starting...
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:16.223
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.250272 +0200 CEST
+: 2022-05-30 17:10:15.961 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.annotations.common.Version", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Start completed.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:16.332
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.250786 +0200 CEST
+: 2022-05-30 17:10:16.132 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:15.961 INFO 71487 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.9.Final
+: HHH000412: Hibernate ORM core version 5.6.9.Final
2022-05-30T17:10:15.961+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.Version", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} HHH000412: Hibernate ORM core version 5.6.9.Final
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.251281 +0200 CEST
+: 2022-05-30 17:10:16.223 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.hibernate.dialect.Dialect
{stages.Entry}.Extracted["message"]:
+: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:16.369
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:16.132 INFO 71487 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
+: HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-05-30T17:10:16.132+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.annotations.common.Version", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:16.223 INFO 71487 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
+: HikariPool-1 - Starting...
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.dialect.Dialect", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
2022-05-30T17:10:16.223+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} [inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.h.e.t.j.p.i.JtaPlatformInitiator
{stages.Entry}.Extracted["message"]:
+: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:17.015
HikariPool-1 - Starting...
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.251747 +0200 CEST
+: 2022-05-30 17:10:16.332 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: j.LocalContainerEntityManagerFactoryBean
{stages.Entry}.Extracted["message"]:
+: Initialized JPA EntityManagerFactory for persistence unit 'default'
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:17.024
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.252072 +0200 CEST
+: 2022-05-30 17:10:16.369 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:16.332 INFO 71487 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
+: HikariPool-1 - Start completed.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.h.e.t.j.p.i.JtaPlatformInitiator", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
2022-05-30T17:10:16.332+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} HikariPool-1 - Start completed.
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:16.369 INFO 71487 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
+: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
2022-05-30T17:10:16.369+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.dialect.Dialect", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.service.CheckoutServiceImpl
{stages.Entry}.Extracted["message"]:
+: Checkout Service: localhost:50051
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:17.717
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.252432 +0200 CEST
+: 2022-05-30 17:10:17.015 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.controller.OrderController
{stages.Entry}.Extracted["message"]:
+: Anti fraud service base url: http://localhost:8081
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:17.753
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:17.015 INFO 71487 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
+: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-05-30T17:10:17.015+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.h.e.t.j.p.i.JtaPlatformInitiator", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.CheckoutServiceImpl", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.252839 +0200 CEST
+: 2022-05-30 17:10:17.024 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.a.w.s.WelcomePageHandlerMapping
{stages.Entry}.Extracted["message"]:
+: Adding welcome page: class path resource [static/index.html]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:18.016
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:17.024 INFO 71487 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
+: Initialized JPA EntityManagerFactory for persistence unit 'default'
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.253201 +0200 CEST
+: 2022-05-30 17:10:17.717 +0000 UTC
2022-05-30T17:10:17.024+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Initialized JPA EntityManagerFactory for persistence unit 'default'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.controller.OrderController", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:17.717 INFO 71487 --- [main] c.m.e.service.CheckoutServiceImpl : Checkout Service: localhost:50051
+: Checkout Service: localhost:50051
2022-05-30T17:10:17.717+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.CheckoutServiceImpl", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Checkout Service: localhost:50051
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.a.e.web.EndpointLinksResolver
{stages.Entry}.Extracted["message"]:
+: Exposing 14 endpoint(s) beneath base path '/actuator'
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:18.503
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.w.s.WelcomePageHandlerMapping", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.25459 +0200 CEST
+: 2022-05-30 17:10:17.753 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.25496 +0200 CEST
+: 2022-05-30 17:10:18.016 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.e.web.EndpointLinksResolver", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.w.embedded.tomcat.TomcatWebServer
{stages.Entry}.Extracted["message"]:
+: Tomcat started on port(s): 59895 (http) with context path ''
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:18.571
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:17.753 INFO 71487 --- [main] c.m.e.controller.OrderController : Anti fraud service base url: http://localhost:8081
+: Anti fraud service base url: http://localhost:8081
2022-05-30T17:10:17.753+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.controller.OrderController", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Anti fraud service base url: http://localhost:8081
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:18.016 INFO 71487 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
+: Adding welcome page: class path resource [static/index.html]
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.255426 +0200 CEST
+: 2022-05-30 17:10:18.503 +0000 UTC
2022-05-30T17:10:18.016+0000[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.ProductServiceImplTest
{stages.Entry}.Extracted["message"]:
+: Started ProductServiceImplTest in 5.198 seconds (JVM running for 5.905)
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:18.582
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.w.s.WelcomePageHandlerMapping", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} [inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
Adding welcome page: class path resource [static/index.html]
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:18.503 INFO 71487 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 14 endpoint(s) beneath base path '/actuator'
+: Exposing 14 endpoint(s) beneath base path '/actuator'
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.256439 +0200 CEST
+: 2022-05-30 17:10:18.571 +0000 UTC
2022-05-30T17:10:18.503+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.e.web.EndpointLinksResolver", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Exposing 14 endpoint(s) beneath base path '/actuator'
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.service.ProductServiceImpl
{stages.Entry}.Extracted["message"]:
+: Cache miss for product 1, load from database in 14ms
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.278
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:18.571 INFO 71487 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 59895 (http) with context path ''
+: Tomcat started on port(s): 59895 (http) with context path ''
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .b.t.c.SpringBootTestContextBootstrapper
{stages.Entry}.Extracted["message"]:
+: Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.333
2022-05-30T17:10:18.571+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Tomcat started on port(s): 59895 (http) with context path ''
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.ProductServiceImpl", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.256925 +0200 CEST
+: 2022-05-30 17:10:18.582 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.258505 +0200 CEST
+: 2022-05-30 17:10:19.278 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.t.c.support.AbstractContextLoader
{stages.Entry}.Extracted["message"]:
+: Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.333
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:18.582 INFO 71487 --- [main] c.m.ecommerce.ProductServiceImplTest : Started ProductServiceImplTest in 5.198 seconds (JVM running for 5.905)
+: Started ProductServiceImplTest in 5.198 seconds (JVM running for 5.905)
2022-05-30T17:10:18.582+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.ProductServiceImplTest", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Started ProductServiceImplTest in 5.198 seconds (JVM running for 5.905)
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.278 INFO 71487 --- [main] c.m.e.service.ProductServiceImpl : Cache miss for product 1, load from database in 14ms
+: Cache miss for product 1, load from database in 14ms
2022-05-30T17:10:19.278+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.ProductServiceImpl", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Cache miss for product 1, load from database in 14ms
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.t.c.support.AbstractContextLoader", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.259017 +0200 CEST
+: 2022-05-30 17:10:19.333 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .b.t.c.SpringBootTestContextBootstrapper
{stages.Entry}.Extracted["message"]:
+: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.336
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.259627 +0200 CEST
+: 2022-05-30 17:10:19.333 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.333 INFO 71487 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
+: Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .b.t.c.SpringBootTestContextBootstrapper
{stages.Entry}.Extracted["message"]:
+: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f5293c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3f7e72a7, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@69bf351e, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@39ae0bff, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@654e793f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29e9d47b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39ee039d, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@705606ac, org.springframework.test.context.event.EventPublishingTestExecutionListener@66c70e18, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1ea44b7, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@48515dfc, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@8f2513c, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@561b39f4, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@587107c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@47fb038d]
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.336
2022-05-30T17:10:19.333+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest], using SpringBootContextLoader
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.333 INFO 71487 --- [main] o.s.t.c.support.AbstractContextLoader : Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
+: Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2022-05-30T17:10:19.333+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.t.c.support.AbstractContextLoader", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Could not detect default resource locations for test class [com.mycompany.ecommerce.EcommerceApplicationIntegrationTest]: no resource found for suffixes {-context.xml, Context.groovy}.
[inspect: regex stage]: none
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.260284 +0200 CEST
+: 2022-05-30 17:10:19.336 +0000 UTC
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.260789 +0200 CEST
+: 2022-05-30 17:10:19.336 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.336 INFO 71487 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
+: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2022-05-30T17:10:19.336+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.336 INFO 71487 --- [main] .b.t.c.SpringBootTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f5293c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3f7e72a7, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@69bf351e, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@39ae0bff, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@654e793f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29e9d47b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39ee039d, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@705606ac, org.springframework.test.context.event.EventPublishingTestExecutionListener@66c70e18, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1ea44b7, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@48515dfc, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@8f2513c, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@561b39f4, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@587107c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@47fb038d]
+: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f5293c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3f7e72a7, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@69bf351e, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@39ae0bff, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@654e793f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29e9d47b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39ee039d, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@705606ac, org.springframework.test.context.event.EventPublishingTestExecutionListener@66c70e18, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1ea44b7, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@48515dfc, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@8f2513c, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@561b39f4, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@587107c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@47fb038d]
[inspect: output stage]: none
[inspect: regex stage]: none
2022-05-30T17:10:19.336+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".b.t.c.SpringBootTestContextBootstrapper", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="main"} Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f5293c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@3f7e72a7, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@69bf351e, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@39ae0bff, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@654e793f, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29e9d47b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39ee039d, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@705606ac, org.springframework.test.context.event.EventPublishingTestExecutionListener@66c70e18, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1ea44b7, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@48515dfc, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@8f2513c, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@561b39f4, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@587107c, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@47fb038d]
2022-09-16T14:57:18.261095+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:10:19.440 INFO 71487 --- [http-nio-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: j.LocalContainerEntityManagerFactoryBean
{stages.Entry}.Extracted["message"]:
+: Closing JPA EntityManagerFactory for persistence unit 'default'
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.752
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.261375+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:10:19.441 INFO 71487 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Shutdown initiated...
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.756
[inspect: output stage]: none
2022-09-16T14:57:18.261632+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:10:19.442 INFO 71487 --- [http-nio-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.261958 +0200 CEST
+: 2022-05-30 17:10:19.752 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Shutdown completed.
{stages.Entry}.Extracted["process_id"]:
+: 71487
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:10:19.761
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.752 INFO 71487 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
+: Closing JPA EntityManagerFactory for persistence unit 'default'
2022-05-30T17:10:19.752+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} Closing JPA EntityManagerFactory for persistence unit 'default'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.262656 +0200 CEST
+: 2022-05-30 17:10:19.756 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.EcommerceApplication
{stages.Entry}.Extracted["message"]:
+: Starting EcommerceApplication using Java 11.0.11 on MacBook-Pro.localdomain with PID 71935 (/Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java/target/frontend-1.0-SNAPSHOT.jar started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:26.858
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.262963 +0200 CEST
+: 2022-05-30 17:10:19.761 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.756 INFO 71487 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
+: HikariPool-1 - Shutdown initiated...
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.EcommerceApplication
{stages.Entry}.Extracted["message"]:
+: No active profile set, falling back to 1 default profile: "default"
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:26.884
2022-05-30T17:10:19.756+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} HikariPool-1 - Shutdown initiated...
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.EcommerceApplication", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:10:19.761 INFO 71487 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
+: HikariPool-1 - Shutdown completed.
2022-05-30T17:10:19.761+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71487", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} HikariPool-1 - Shutdown completed.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.EcommerceApplication", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Multiple Spring Data modules found, entering strict repository configuration mode!
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:29.777
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.263368 +0200 CEST
+: 2022-05-30 17:11:26.858 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.263733 +0200 CEST
+: 2022-05-30 17:11:26.884 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:26.858 INFO 71935 --- [main] c.m.ecommerce.EcommerceApplication : Starting EcommerceApplication using Java 11.0.11 on MacBook-Pro.localdomain with PID 71935 (/Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java/target/frontend-1.0-SNAPSHOT.jar started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
+: Starting EcommerceApplication using Java 11.0.11 on MacBook-Pro.localdomain with PID 71935 (/Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java/target/frontend-1.0-SNAPSHOT.jar started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Bootstrapping Spring Data JPA repositories in DEFAULT mode.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:29.796
2022-05-30T17:11:26.858+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.EcommerceApplication", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Starting EcommerceApplication using Java 11.0.11 on MacBook-Pro.localdomain with PID 71935 (/Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java/target/frontend-1.0-SNAPSHOT.jar started by cyrilleleclerc in /Users/cyrilleleclerc/git/cyrille-leclerc/my-shopping-cart/frontend-java)
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:26.884 INFO 71935 --- [main] c.m.ecommerce.EcommerceApplication : No active profile set, falling back to 1 default profile: "default"
+: No active profile set, falling back to 1 default profile: "default"
2022-05-30T17:11:26.884+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.EcommerceApplication", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} No active profile set, falling back to 1 default profile: "default"
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Finished Spring Data repository scanning in 899 ms. Found 3 JPA repository interfaces.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.715
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.264015 +0200 CEST
+: 2022-05-30 17:11:29.777 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:29.777 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
+: Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
2022-05-30T17:11:29.777+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.264919 +0200 CEST
+: 2022-05-30 17:11:29.796 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Multiple Spring Data modules found, entering strict repository configuration mode!
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.732
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.265208 +0200 CEST
+: 2022-05-30 17:11:30.715 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:29.796 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
+: Bootstrapping Spring Data JPA repositories in DEFAULT mode.
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Bootstrapping Spring Data Redis repositories in DEFAULT mode.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.734
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
2022-05-30T17:11:29.796+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Bootstrapping Spring Data JPA repositories in DEFAULT mode.
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.715 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 899 ms. Found 3 JPA repository interfaces.
+: Finished Spring Data repository scanning in 899 ms. Found 3 JPA repository interfaces.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
2022-05-30T17:11:30.715+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Finished Spring Data repository scanning in 899 ms. Found 3 JPA repository interfaces.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.265855 +0200 CEST
+: 2022-05-30 17:11:30.732 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.759
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.266203 +0200 CEST
+: 2022-05-30 17:11:30.734 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.732 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
+: Multiple Spring Data modules found, entering strict repository configuration mode!
2022-05-30T17:11:30.732+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Multiple Spring Data modules found, entering strict repository configuration mode!
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.760
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.734 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+: Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-05-30T17:11:30.734+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Bootstrapping Spring Data Redis repositories in DEFAULT mode.
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.266428 +0200 CEST
+: 2022-05-30 17:11:30.759 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .RepositoryConfigurationExtensionSupport
{stages.Entry}.Extracted["message"]:
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.761
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.759 INFO 71935 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:11:30.759+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.ProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: .s.d.r.c.RepositoryConfigurationDelegate
{stages.Entry}.Extracted["message"]:
+: Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:30.762
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.266616 +0200 CEST
+: 2022-05-30 17:11:30.76 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.266893 +0200 CEST
+: 2022-05-30 17:11:30.761 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.w.embedded.tomcat.TomcatWebServer
{stages.Entry}.Extracted["message"]:
+: Tomcat initialized with port(s): 8080 (http)
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:32.375
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.760 INFO 71935 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
2022-05-30T17:11:30.76+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderProductRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.761 INFO 71935 --- [main] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
+: Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
2022-05-30T17:11:30.761+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".RepositoryConfigurationExtensionSupport", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.mycompany.ecommerce.repository.OrderRepository. If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.267073 +0200 CEST
+: 2022-05-30 17:11:30.762 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.apache.catalina.core.StandardService
{stages.Entry}.Extracted["message"]:
+: Starting service [Tomcat]
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:32.413
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.267328 +0200 CEST
+: 2022-05-30 17:11:32.375 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.apache.catalina.core.StandardService", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.apache.catalina.core.StandardEngine
{stages.Entry}.Extracted["message"]:
+: Starting Servlet engine: [Apache Tomcat/9.0.63]
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:32.414
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:30.762 INFO 71935 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces.
+: Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces.
2022-05-30T17:11:30.762+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope=".s.d.r.c.RepositoryConfigurationDelegate", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces.
[inspect: regex stage]: none
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.apache.catalina.core.StandardEngine", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:32.375 INFO 71935 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
+: Tomcat initialized with port(s): 8080 (http)
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.267581 +0200 CEST
+: 2022-05-30 17:11:32.413 +0000 UTC
2022-05-30T17:11:32.375+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Tomcat initialized with port(s): 8080 (http)
[inspect: labels stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:32.413 INFO 71935 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
+: Starting service [Tomcat]
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: w.s.c.ServletWebServerApplicationContext
{stages.Entry}.Extracted["message"]:
+: Root WebApplicationContext: initialization completed in 5475 ms
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:32.515
2022-05-30T17:11:32.413+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.apache.catalina.core.StandardService", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}Starting service [Tomcat]
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.26777 +0200 CEST
+: 2022-05-30 17:11:32.414 +0000 UTC
[inspect: timestamp stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:32.414 INFO 71935 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.63]
+: Starting Servlet engine: [Apache Tomcat/9.0.63]
2022-05-30T17:11:32.414+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.apache.catalina.core.StandardEngine", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Starting Servlet engine: [Apache Tomcat/9.0.63]
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.hibernate.jpa.internal.util.LogHelper
{stages.Entry}.Extracted["message"]:
+: HHH000204: Processing PersistenceUnitInfo [name: default]
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:33.535
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="w.s.c.ServletWebServerApplicationContext", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]: none
2022-09-16T14:57:18.268098+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:11:32.514 INFO 71935 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.jpa.internal.util.LogHelper", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.268321 +0200 CEST
+: 2022-05-30 17:11:32.515 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.hibernate.Version
{stages.Entry}.Extracted["message"]:
+: HHH000412: Hibernate ORM core version 5.6.9.Final
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:33.974
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:32.515 INFO 71935 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 5475 ms
+: Root WebApplicationContext: initialization completed in 5475 ms
2022-05-30T17:11:32.515+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="w.s.c.ServletWebServerApplicationContext", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Root WebApplicationContext: initialization completed in 5475 ms
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.hibernate.annotations.common.Version
{stages.Entry}.Extracted["message"]:
+: HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:34.345
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.268555 +0200 CEST
+: 2022-05-30 17:11:33.535 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.Version", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:33.535 INFO 71935 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
+: HHH000204: Processing PersistenceUnitInfo [name: default]
2022-05-30T17:11:33.535+0000 [inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.annotations.common.Version", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.jpa.internal.util.LogHelper", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} HHH000204: Processing PersistenceUnitInfo [name: default]
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.268872 +0200 CEST
+: 2022-05-30 17:11:33.974 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Starting...
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:34.589
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:33.974 INFO 71935 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.9.Final
+: HHH000412: Hibernate ORM core version 5.6.9.Final
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.269214 +0200 CEST
+: 2022-05-30 17:11:34.345 +0000 UTC
2022-05-30T17:11:33.974+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.Version", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} HHH000412: Hibernate ORM core version 5.6.9.Final
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Start completed.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:34.910
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:34.345 INFO 71935 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
+: HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-05-30T17:11:34.345+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.hibernate.annotations.common.Version", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: org.hibernate.dialect.Dialect
{stages.Entry}.Extracted["message"]:
+: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:35.033
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.26954 +0200 CEST
+: 2022-05-30 17:11:34.589 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.269816 +0200 CEST
+: 2022-05-30 17:11:34.91 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:34.589 INFO 71935 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
+: HikariPool-1 - Starting...
2022-05-30T17:11:34.589+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} HikariPool-1 - Starting...
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.h.e.t.j.p.i.JtaPlatformInitiator
{stages.Entry}.Extracted["message"]:
+: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:36.704
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:34.910 INFO 71935 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
+: HikariPool-1 - Start completed.
2022-05-30T17:11:34.91+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} HikariPool-1 - Start completed.
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.dialect.Dialect", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.h.e.t.j.p.i.JtaPlatformInitiator", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: j.LocalContainerEntityManagerFactoryBean
{stages.Entry}.Extracted["message"]:
+: Initialized JPA EntityManagerFactory for persistence unit 'default'
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:36.741
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.270041 +0200 CEST
+: 2022-05-30 17:11:35.033 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:35.033 INFO 71935 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
+: HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
2022-05-30T17:11:35.033+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="org.hibernate.dialect.Dialect", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL10Dialect
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.270376 +0200 CEST
+: 2022-05-30 17:11:36.704 +0000 UTC
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.service.CheckoutServiceImpl
{stages.Entry}.Extracted["message"]:
+: Checkout Service: localhost:50051
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:38.355
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:36.704 INFO 71935 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
+: HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-05-30T17:11:36.704+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.h.e.t.j.p.i.JtaPlatformInitiator", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.270623 +0200 CEST
+: 2022-05-30 17:11:36.741 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.e.controller.OrderController
{stages.Entry}.Extracted["message"]:
+: Anti fraud service base url: http://localhost:8081
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:38.394
HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.CheckoutServiceImpl", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:36.741 INFO 71935 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
+: Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-05-30T17:11:36.741+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Initialized JPA EntityManagerFactory for persistence unit 'default'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.controller.OrderController", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.a.w.s.WelcomePageHandlerMapping
{stages.Entry}.Extracted["message"]:
+: Adding welcome page: class path resource [static/index.html]
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:38.692
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.270818 +0200 CEST
+: 2022-05-30 17:11:38.355 +0000 UTC
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.271103 +0200 CEST
+: 2022-05-30 17:11:38.394 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:38.355 INFO 71935 --- [main] c.m.e.service.CheckoutServiceImpl : Checkout Service: localhost:50051
+: Checkout Service: localhost:50051
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.w.s.WelcomePageHandlerMapping", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
2022-05-30T17:11:38.355+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.service.CheckoutServiceImpl", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Checkout Service: localhost:50051
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.a.e.web.EndpointLinksResolver
{stages.Entry}.Extracted["message"]:
+: Exposing 14 endpoint(s) beneath base path '/actuator'
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:39.180
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:38.394 INFO 71935 --- [main] c.m.e.controller.OrderController : Anti fraud service base url: http://localhost:8081
+: Anti fraud service base url: http://localhost:8081
2022-05-30T17:11:38.394+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.e.controller.OrderController", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Anti fraud service base url: http://localhost:8081
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.e.web.EndpointLinksResolver", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.271366 +0200 CEST
+: 2022-05-30 17:11:38.692 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: o.s.b.w.embedded.tomcat.TomcatWebServer
{stages.Entry}.Extracted["message"]:
+: Tomcat started on port(s): 8080 (http) with context path ''
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:39.276
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.271849 +0200 CEST
+: 2022-05-30 17:11:39.18 +0000 UTC
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: c.m.ecommerce.EcommerceApplication
{stages.Entry}.Extracted["message"]:
+: Started EcommerceApplication in 13.555 seconds (JVM running for 17.282)
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: main
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 17:11:39.290
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:38.692 INFO 71935 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html]
+: Adding welcome page: class path resource [static/index.html]
2022-05-30T17:11:38.692+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.w.s.WelcomePageHandlerMapping", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Adding welcome page: class path resource [static/index.html]
[inspect: regex stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:39.180 INFO 71935 --- [main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 14 endpoint(s) beneath base path '/actuator'
+: Exposing 14 endpoint(s) beneath base path '/actuator'
2022-05-30T17:11:39.18+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.a.e.web.EndpointLinksResolver", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Exposing 14 endpoint(s) beneath base path '/actuator'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.EcommerceApplication", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"}
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.272426 +0200 CEST
+: 2022-05-30 17:11:39.276 +0000 UTC
[inspect: labels stage]: none
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.273272 +0200 CEST
+: 2022-05-30 17:11:39.29 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:39.276 INFO 71935 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
+: Tomcat started on port(s): 8080 (http) with context path ''
[inspect: regex stage]: none
2022-05-30T17:11:39.276+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="o.s.b.w.embedded.tomcat.TomcatWebServer", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Tomcat started on port(s): 8080 (http) with context path ''
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 17:11:39.290 INFO 71935 --- [main] c.m.ecommerce.EcommerceApplication : Started EcommerceApplication in 13.555 seconds (JVM running for 17.282)
+: Started EcommerceApplication in 13.555 seconds (JVM running for 17.282)
2022-05-30T17:11:39.29+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="c.m.ecommerce.EcommerceApplication", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="main"} Started EcommerceApplication in 13.555 seconds (JVM running for 17.282)
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.273713+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:11:53.764 INFO 71935 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.274081+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:11:53.765 INFO 71935 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.274555+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:11:53.767 INFO 71935 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.275014+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:12:00.775 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.service.ProductServiceImpl : Cache miss for product 5, load from database in 6ms
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.275376+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 17:12:01.584 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314893
[inspect: output stage]: none
2022-09-16T14:57:18.275647+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:00:08.620 WARN 71935 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=30m26s833ms).
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.275976+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:18:15.574 WARN 71935 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=17m6s919ms).
[inspect: output stage]: none
2022-09-16T14:57:18.276931+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:28:13.633 WARN 71935 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=9m58s59ms).
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.277154+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:09.879 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.service.ProductServiceImpl : Cache miss for product 3, load from database in 38ms
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.277841+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:09.894 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.service.ProductServiceImpl : Cache miss for product 11, load from database in 2ms
[inspect: output stage]: none
2022-09-16T14:57:18.278615+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.238 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.service.ProductServiceImpl : Cache miss for product 12, load from database in 1ms
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.279174+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: timestamp stage]: none
2022-05-30 18:53:10.412 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.service.ProductServiceImpl : Cache miss for product 8, load from database in 1ms
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.279452+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.476 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.service.ProductServiceImpl : Cache miss for product 5, load from database in 1ms
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.279691+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.480 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314894
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.279947+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.519 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314895
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.280152+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.620 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314896
[inspect: output stage]: none
2022-09-16T14:57:18.280338+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.621 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.service.ProductServiceImpl : Cache miss for product 10, load from database in 1ms
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.28059+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.654 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314897
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.280752+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.732 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.service.ProductServiceImpl : Cache miss for product 6, load from database in 1ms
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.280956+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:10.840 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314898
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.281159+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:11.143 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): price: 200.0, fraud.exception: ResourceAccessException / SocketTimeoutException with URL http://localhost:8081/fraud/checkOrder?orderPrice={q}&customerIpAddress={q}&shippingCountry={q}[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.281399+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:11.532 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314899
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.281576+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:11.686 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314900
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.281852+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:11.863 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.service.ProductServiceImpl : Cache miss for product 2, load from database in 0ms[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.282024+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:11.879 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314901
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.282391+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.079 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314902
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.28265+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.087 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314904
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.282942+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.087 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314903
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.283198+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.154 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.service.ProductServiceImpl : Cache miss for product 1, load from database in 2ms
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.283447+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.219 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314905
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.283781+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.536 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314906
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.283994+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.649 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314907
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.284241+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.812 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314908
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.284571+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:13.867 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314909
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.284755+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:14.231 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, fraud.exception:response-KO[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.28521+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:14.666 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314910
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.285549+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:14.725 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.service.ProductServiceImpl : Cache miss for product 4, load from database in 2ms
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.285846+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.276 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): price: 200.0, fraud.exception: ResourceAccessException / SocketTimeoutException with URL http://localhost:8081/fraud/checkOrder?orderPrice={q}&customerIpAddress={q}&shippingCountry={q}
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.286339+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.479 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314912
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.286685+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.506 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314913
[inspect: output stage]: none
2022-09-16T14:57:18.286911+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.513 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314911
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.287166+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.555 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.service.ProductServiceImpl : Cache miss for product 9, load from database in 1ms
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.287482+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.577 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314914[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.287732+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:15.739 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314915
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.28805+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:16.157 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.service.ProductServiceImpl : Cache miss for product 7, load from database in 1ms
[inspect: output stage]: none
2022-09-16T14:57:18.288298+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:16.369 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314916
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.288585+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:16.550 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4314917
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.288955+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:16.609 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314918[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.289255+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:16.809 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4314919
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.289615+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:16.882 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314920
[inspect: output stage]: none
2022-09-16T14:57:18.289901+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:17.044 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314921
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.29019+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:17.073 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4314922
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.290703+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:17.575 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314923
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.291188+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:17.666 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314924
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.291869+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:18.297 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314925
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.292341+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:18.328 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314926
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.292671+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:18.425 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314927
[inspect: output stage]: none
2022-09-16T14:57:18.29314+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:18.917 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4314928
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.293527+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:19.527 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314929
[inspect: output stage]: none
2022-09-16T14:57:18.293854+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
2022-05-30 18:53:19.648 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314930
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.294221+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:20.234 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314931
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.294405+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:20.337 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314932
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.294579+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:20.383 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314933
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.294803+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:20.971 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314934
[inspect: output stage]: none
2022-09-16T14:57:18.294994+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:20.997 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314935
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.295154+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:21.255 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314936
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.295337+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:21.531 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314937
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.29573+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:21.732 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314938
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.296773+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:21.741 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4314939
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.297318+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:21.761 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4314940[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.297485+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:22.240 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314941
[inspect: output stage]: none
2022-09-16T14:57:18.297683+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:22.566 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314942
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.297831+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:22.838 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314943
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.29811+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:22.977 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314944
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.29829+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:23.088 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4314945
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.298475+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:23.133 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314946
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.298658+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:23.299 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314947
[inspect: output stage]: none
2022-09-16T14:57:18.298907+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:23.482 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314948
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.299162+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:23.618 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314949
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.299422+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: labels stage]: none
2022-05-30 18:53:24.730 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314950
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.29963+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:24.875 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314951
[inspect: output stage]: none
2022-09-16T14:57:18.29989+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: labels stage]: none
[inspect: regex stage]: none
2022-05-30 18:53:25.275 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314952
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.300067+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:25.289 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314953
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.300278+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:25.750 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4314954
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.300489+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:25.807 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314955
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.300754+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:26.163 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314956
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.300891+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:26.164 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314958
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.301089+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:26.169 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4314957
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.301325+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:26.546 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314959
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.301524+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:27.431 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314960
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.301695+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:27.571 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314961
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.301874+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:27.685 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4314962
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.302076+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:27.740 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314963
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.302266+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:28.230 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314964
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.302488+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:28.356 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314966
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.302682+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:28.359 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4314965
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.302837+0200[inspect: labels stage]: none
[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:28.414 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4314967
[inspect: output stage]: none
2022-09-16T14:57:18.303033+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:28.548 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.303294+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: labels stage]: none
2022-05-30 18:53:28.665 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314968
[inspect: output stage]: none
2022-09-16T14:57:18.303467+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:30.017 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314969
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.303656+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:30.456 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314970
[inspect: output stage]: none
2022-09-16T14:57:18.303833+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:30.592 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4314971
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.304032+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:30.626 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314972
[inspect: output stage]: none
2022-09-16T14:57:18.304222+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:30.755 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314973
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.304515+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:31.006 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314974
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.304679+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:31.055 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314975
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.305108+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:31.321 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314976
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.30541+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:31.408 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4314977
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.305738+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:31.906 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4314978
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.306012+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:31.956 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4314979
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.306386+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:32.619 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314980
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.306568+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:32.758 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314981
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.306829+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:33.268 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4314982
[inspect: output stage]: none
2022-09-16T14:57:18.307209+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:33.323 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314983
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.307438+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
[inspect: labels stage]: none
2022-05-30 18:53:33.724 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4314984[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.30774+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:33.778 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4314985
[inspect: output stage]: none
2022-09-16T14:57:18.308059+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:33.834 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4314987
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.30826+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:33.842 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314986
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.30847+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:33.894 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314988
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.308669+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:34.208 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4314989
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.309016+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:34.315 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314990
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.309217+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:35.117 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4314991
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.309453+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: labels stage]: none
2022-05-30 18:53:35.445 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314992
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.309682+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:35.664 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4314993
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.310081+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:35.850 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314994
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.310322+0200 [inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:35.974 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4314995
[inspect: output stage]: none
2022-09-16T14:57:18.310496+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:36.385 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314996
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.312029+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:36.534 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4314997
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.312398+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:36.628 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4314998
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.312641+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:36.921 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4314999
[inspect: output stage]: none
2022-09-16T14:57:18.313001+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:36.922 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315000
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.313271+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:36.974 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315001
[inspect: output stage]: none
2022-09-16T14:57:18.31367+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:37.851 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315002
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.313898+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: regex stage]: none
2022-05-30 18:53:37.872 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315003
[inspect: output stage]: none
2022-09-16T14:57:18.314288+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:38.324 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315004
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.314449+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:38.480 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315005
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.314703+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:38.626 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315006
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.315097+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:39.035 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315007[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.315398+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:39.297 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315008
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.315729+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:39.400 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315009
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.316001+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-05-30 18:53:39.886 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315010
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.316248+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:40.369 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315011
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.316592+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:40.549 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315012
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.316853+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.033 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315013[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.31725+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.132 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315014
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.317547+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.188 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315015
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.317884+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.294 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315016
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.318101+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.680 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315017
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.318433+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.695 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315018
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.31867+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:41.797 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315019
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.318929+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:42.401 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315020
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.319209+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:42.830 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315021
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.319479+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:43.018 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315022
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.31978+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:43.251 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315023
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.320006+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:43.286 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315024
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.320341+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:43.419 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315025
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.320593+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:43.595 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315026
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.320871+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:44.069 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315027
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.321199+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:44.496 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315028
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.32154+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:44.777 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315029
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.321939+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:44.943 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315030
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.322535+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:45.476 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315031
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.322913+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: regex stage]: none
2022-05-30 18:53:45.494 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315032
[inspect: output stage]: none
2022-09-16T14:57:18.323227+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:45.537 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315033
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.323584+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:46.027 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315034
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.324126+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:46.282 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315035[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.324483+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:46.467 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315036
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.32482+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:46.497 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, fraud.exception:response-KO
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.325158+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: regex stage]: none
2022-05-30 18:53:46.759 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315037
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.325501+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:47.040 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315038
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.325741+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:47.270 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315039
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.325955+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:47.388 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315040
[inspect: output stage]: none
2022-09-16T14:57:18.326105+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:47.569 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315041
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.326295+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: output stage]: none
2022-05-30 18:53:47.997 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315042
2022-09-16T14:57:18.326459+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:53:48.002 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315043
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.326726+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:48.003 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315044
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.326881+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:53:48.059 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315045
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.327039+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:48.185 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315046
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.327184+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:49.105 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315047
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.327403+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:49.550 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315048[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.327624+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:49.626 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315049
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.327801+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:50.510 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315050
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.327997+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:51.322 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315051
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.328185+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:51.395 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315052[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.328341+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:51.559 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.328567+0200[inspect: labels stage]: none
[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:53:51.792 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315053
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.328736+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:51.874 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315054
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.328946+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:51.906 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315055
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.33119+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:51.913 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315056
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.33194+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:52.054 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315057
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.332085+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:52.099 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315058
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.332477+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:53.025 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315059
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.332698+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:53.142 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315060
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.333062+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: timestamp stage]: none
2022-05-30 18:53:53.680 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315061
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.333275+0200 [inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:53.719 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
[inspect: output stage]: none
2022-09-16T14:57:18.33362+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:53.728 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315062
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.333952+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:53.813 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.334282+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:53.867 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315063
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.33463+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:54.289 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.33491+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-05-30 18:53:54.812 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315064
2022-09-16T14:57:18.335123+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:54.959 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315065
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.335422+0200 [inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:55.600 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315066
[inspect: output stage]: none
2022-09-16T14:57:18.335619+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:55.711 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315067
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.335729+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:55.752 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315068
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.335902+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:56.214 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315069[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.336082+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:56.331 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315070
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.336249+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:56.569 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315071
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.336438+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:56.878 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315072
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.336678+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:57.125 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315073
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.336859+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:57.256 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315074
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.337084+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:57.468 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315075
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.337323+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:57.810 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315076
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.337474+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:57.872 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315077
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.337691+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:57.909 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315078
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.337848+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:58.126 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315079
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.33815+0200 [inspect: labels stage]: none
[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:58.539 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315080
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.338511+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:58.700 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315081
[inspect: output stage]: none
2022-09-16T14:57:18.338951+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:59.164 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315082
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.339274+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:59.173 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315083
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.339538+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:53:59.488 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315084
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.339811+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:00.072 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315085
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.34021+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:00.600 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315086
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.340408+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:00.839 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315087
[inspect: output stage]: none
2022-09-16T14:57:18.340695+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:00.855 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315089
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.340933+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:00.864 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315090[inspect: output stage]: none
2022-09-16T14:57:18.341294+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:00.880 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315088
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.341591+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:01.012 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315091
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.341827+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:01.329 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315093
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.342131+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:01.360 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315092
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.342342+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:01.414 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315094
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.342682+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:02.261 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315095
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.342942+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
2022-05-30 18:54:02.648 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315096[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.343178+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:02.717 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315097
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.343477+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:02.906 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315098
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.343711+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:03.282 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315099
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.343997+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:03.307 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315100
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.344372+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:03.353 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315101
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.344671+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: regex stage]: none
2022-05-30 18:54:03.612 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315102
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.345008+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:03.681 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315103
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.345274+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:04.272 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315104
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.345674+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:04.643 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315105[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.345966+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:04.969 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315106
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.347186+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:05.058 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315107
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.348669+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:05.943 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315108[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.34891+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:06.007 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315109
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.349278+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:06.627 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315110
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.349584+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:06.799 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315111
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.349857+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:07.001 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315112
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.350095+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:07.525 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315113
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.350336+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:07.573 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315115[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.350592+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:07.579 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315114
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.35082+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:07.598 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315117
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.351099+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:07.620 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315116
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.351354+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:08.139 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315118[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.351652+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:08.239 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315119
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.351935+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:08.622 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315120
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.352192+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:08.787 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315121
[inspect: output stage]: none
2022-09-16T14:57:18.352449+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:09.188 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315122
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.352755+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:09.464 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315123
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.353029+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:09.530 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315124
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.353279+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:09.682 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315125
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.35349+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:10.347 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315126
[inspect: output stage]: none
2022-09-16T14:57:18.353708+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:10.453 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315127
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.353959+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:10.606 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315128
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.354206+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:11.520 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315129
[inspect: output stage]: none
2022-09-16T14:57:18.354505+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:11.530 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315130
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.354826+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:11.539 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315131
[inspect: output stage]: none
2022-09-16T14:57:18.355086+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:11.661 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315132
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.355371+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:11.766 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315133
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.355731+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:12.131 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315134
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.355989+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:12.356 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315135
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.356212+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:12.840 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315136
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.356441+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:13.115 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315137
[inspect: output stage]: none
2022-09-16T14:57:18.356748+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-05-30 18:54:13.238 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315138
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.357151+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:13.516 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315139
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.357545+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.025 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315140
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.357848+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.038 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315141
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.358375+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.175 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315142
[inspect: output stage]: none
2022-09-16T14:57:18.358943+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.293 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315143
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.359308+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.463 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315144
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.359717+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.491 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315145
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.360098+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.638 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315146
[inspect: output stage]: none
2022-09-16T14:57:18.360531+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:14.750 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315147
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.360941+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.044 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315148
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.361318+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.309 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315149
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.361491+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.390 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315150
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.361748+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.422 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315152
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.361923+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.439 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315151
[inspect: output stage]: none
2022-09-16T14:57:18.362071+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.892 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315153
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.362276+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.912 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315154
[inspect: output stage]: none
2022-09-16T14:57:18.362454+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:16.996 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315155
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.36257+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: output stage]: none
2022-05-30 18:54:17.123 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315156
2022-09-16T14:57:18.362776+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:17.398 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315157
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.362935+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:17.978 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315158
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.363093+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:18.507 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315159
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.363275+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:18.760 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315160
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.363473+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:19.242 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315161
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.363696+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:19.417 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315163
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.363812+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:19.441 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315162
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.364008+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:19.690 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315164
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.364123+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:20.332 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315165
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.364299+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:20.506 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315166
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.365106+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:20.583 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.365823+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:21.050 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315167
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.366178+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:21.422 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315168
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.366339+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:21.567 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315169
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.366584+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:21.656 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.3667+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:21.658 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315170
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.366887+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:21.888 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315171
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.367034+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:22.357 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315172
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.367234+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:22.775 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315173
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.367405+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:22.906 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315174
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.367576+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.106 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315175
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.36771+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.156 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315176
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.367901+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.266 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315177
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.36805+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.466 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315178
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.368204+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.494 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315179
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.368401+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.628 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315180
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.368514+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:23.968 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, fraud.exception:response-KO
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.368701+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
[inspect: labels stage]: none
2022-05-30 18:54:24.781 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315181
[inspect: output stage]: none
2022-09-16T14:57:18.368823+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
2022-05-30 18:54:24.974 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315182[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.368997+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:25.211 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315183
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.369191+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:25.856 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315184
[inspect: output stage]: none
2022-09-16T14:57:18.369318+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:25.877 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315185
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.369478+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:26.073 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315186
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.369687+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:26.227 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315187
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.369898+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:26.355 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315188
[inspect: output stage]: none
2022-09-16T14:57:18.370006+0200 [inspect: labels stage]: none
[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:54:26.395 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, fraud.exception:response-KO
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.370169+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:26.956 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315189
[inspect: output stage]: none
2022-09-16T14:57:18.370395+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:27.414 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315190
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.370512+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:27.522 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315191
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.370683+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:27.823 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315192
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.371035+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:28.448 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315193
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.371082+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:28.589 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315195
[inspect: output stage]: none
2022-09-16T14:57:18.371341+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:28.612 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315194
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.371648+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:28.661 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315196
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.372028+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:29.131 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315197
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.372094+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:29.176 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.372362+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:29.301 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315198[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.372596+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:29.447 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315199
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.372862+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:30.031 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315200
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.373239+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
[inspect: labels stage]: none
2022-05-30 18:54:30.101 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315201
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.373555+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:30.182 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315202
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.373859+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:30.589 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315203
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.374145+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:31.024 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315204
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.374376+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:31.257 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315205
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.374759+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:31.376 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315206
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.375048+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:31.817 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315207
[inspect: output stage]: none
2022-09-16T14:57:18.375478+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:31.996 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315209
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.37569+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:32.021 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315208
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.37594+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:32.159 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315210
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.376384+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:32.808 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315211
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.376585+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:32.898 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315212
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.376784+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:33.578 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315213
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.377051+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:33.630 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315214
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.377322+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:33.677 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315215
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.37828+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:34.250 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315216
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.378932+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:34.258 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315217
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.379216+0200[inspect: labels stage]: none
[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:34.455 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315218
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.379524+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:34.500 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315219
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.379802+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:34.674 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315220
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.380078+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:34.816 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315221
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.380281+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:35.449 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315222
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.380525+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:35.492 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315223
[inspect: output stage]: none
2022-09-16T14:57:18.380868+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:35.498 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315224
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.381202+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:35.896 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315225
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.381471+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:35.968 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315226
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.381698+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:36.493 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315227
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.381903+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:36.525 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315228
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.382169+0200[inspect: labels stage]: none
[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:36.852 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315229
[inspect: output stage]: none
2022-09-16T14:57:18.382397+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:37.429 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315231
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.382736+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:37.466 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315230
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.382959+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:37.916 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315232
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.383274+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:38.290 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315233
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.383361+0200[inspect: regex stage]: none
[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:38.334 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315234
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.383633+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:38.414 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315235
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.383928+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:38.477 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315236
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.384185+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:38.489 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315237
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.384461+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:39.042 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315238
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.384804+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:40.191 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315239
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.385601+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:40.200 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315240
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.385836+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:40.229 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315241
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.386265+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:40.238 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315242
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.386526+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:40.702 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315243
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.386719+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:40.765 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315244
[inspect: output stage]: none
2022-09-16T14:57:18.386941+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:41.307 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315245
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.387171+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:41.312 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315246
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.387321+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:41.483 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315247
[inspect: output stage]: none
2022-09-16T14:57:18.387694+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:41.960 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315248
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.387929+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:42.072 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315249
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.38807+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:42.173 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315250
2022-09-16T14:57:18.38827+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:42.403 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315251
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.388537+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:42.571 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315252
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.388773+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:42.815 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315253
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.389127+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:43.023 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315254
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.38957+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:43.071 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315255
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.38997+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:43.356 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315256
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.390405+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:43.359 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315257
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.390923+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:43.567 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315258
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.394133+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:44.445 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315259
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.394543+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:44.748 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315260
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.394716+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:44.957 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315261
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.394902+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:45.607 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315262
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.395038+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:45.772 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315263
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.395184+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:46.375 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315264
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.395286+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:46.559 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315265
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.395564+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:46.763 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315266
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.395706+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:46.772 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315267
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.395866+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:47.352 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315268
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.396059+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:47.449 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315269
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.3963+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:47.492 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315270
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.396424+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:47.663 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315271
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.396591+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:47.751 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315272
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.396772+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:47.944 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315273
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.396899+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:48.055 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315274
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.397156+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:48.457 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315275
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.39729+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:48.538 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315276
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.397397+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:48.588 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315277
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.397539+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: timestamp stage]: none
2022-05-30 18:54:48.672 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315278
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.397726+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:49.606 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315279
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.397891+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:49.895 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315280
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.398026+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:50.090 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315281
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.398137+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:50.384 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315282
[inspect: output stage]: none
2022-09-16T14:57:18.398321+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:50.561 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315283
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.398473+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:50.783 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315284
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.398652+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:50.872 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315285
[inspect: output stage]: none
2022-09-16T14:57:18.398752+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:51.042 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315286
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.39889+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:51.558 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315287
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.399013+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:51.596 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315288
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.399136+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:51.717 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315289
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.399286+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:51.766 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315290
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.399472+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:54:51.844 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315291
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.399632+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:52.307 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315292
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.399814+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:52.681 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315293
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.399958+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:52.788 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315294
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.400109+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:53.105 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315295
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.400252+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
[inspect: labels stage]: none
2022-05-30 18:54:53.875 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315296
[inspect: output stage]: none
2022-09-16T14:57:18.400375+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:54.274 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315297
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.400504+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:54.630 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315298
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.400645+0200[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:55.032 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315299
[inspect: output stage]: none
2022-09-16T14:57:18.400759+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:55.164 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315300
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.400905+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:55.214 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315301
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.401035+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:55.276 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315302
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.401153+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:55.500 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315303
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.401336+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: regex stage]: none
2022-05-30 18:54:55.664 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315304
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.401467+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:55.690 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315305
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.401612+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:56.279 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315306
[inspect: output stage]: none
2022-09-16T14:57:18.401815+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:56.837 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315307
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.401942+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:56.909 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315308
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.402057+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: regex stage]: none
2022-05-30 18:54:56.963 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315309
[inspect: output stage]: none
2022-09-16T14:57:18.402198+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:57.594 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315310
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.402347+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: labels stage]: none
2022-05-30 18:54:57.866 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315311
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.402526+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:57.941 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315312
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.402748+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:58.027 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315313
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.40317+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: timestamp stage]: none
2022-05-30 18:54:58.154 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315314
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.403796+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:58.163 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315315
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.404858+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:58.212 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315316
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.40518+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:58.247 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315317
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.405597+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:59.384 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315318
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.405854+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:54:59.978 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315319
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.406081+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:00.104 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315320
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.406421+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:00.363 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315321
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.40669+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:00.637 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315322
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.406931+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:00.834 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315323
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.407164+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:00.996 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315324
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.407386+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:55:01.121 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315325
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.407709+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:01.504 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315326
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.407958+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:01.571 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315327
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.408214+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:01.688 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315328
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.408379+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:01.899 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315329
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.408555+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:01.951 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315330
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.4088+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:02.597 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315331
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.408984+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:02.651 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315332
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.409135+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:02.895 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315333
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.409321+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: timestamp stage]: none
2022-05-30 18:55:03.239 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315334
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.409643+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:03.293 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315335
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.409816+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:03.324 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315336
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.409956+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:03.964 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315337
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.410239+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:04.177 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315338
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.410499+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:04.809 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315339
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.410756+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:04.832 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315340
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.411036+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:05.159 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.411213+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
2022-05-30 18:55:05.271 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315341
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.41146+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:05.740 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315342
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.411661+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:06.092 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315343
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.411861+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:06.122 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315344[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.412043+0200[inspect: labels stage]: none
[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:06.697 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315345
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.412236+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
2022-05-30 18:55:06.863 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315346
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.412484+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:06.947 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315347
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.412669+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:07.027 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315348
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.412841+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:07.456 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315349
[inspect: output stage]: none
2022-09-16T14:57:18.412988+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:07.755 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315350
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.413225+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:08.032 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315351
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.413483+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:08.068 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315352
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.413738+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:08.094 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315353
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.413904+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:08.998 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315354
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.414071+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:09.090 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315355
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.414308+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:09.340 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315356
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.414494+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:09.403 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.414668+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:09.407 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315357
[inspect: output stage]: none
2022-09-16T14:57:18.414886+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:10.043 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315358
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.415063+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:10.447 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315359
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.415222+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:10.526 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315360
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.415396+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:10.677 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315361
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.415586+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:10.969 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315362
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.415867+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:11.214 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315363
[inspect: output stage]: none
2022-09-16T14:57:18.416193+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:11.421 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315364
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.416365+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:11.525 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315365
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.41651+0200[inspect: output stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:11.831 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315366
2022-09-16T14:57:18.416715+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:12.412 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315367
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.41689+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:12.621 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315368
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.417087+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:12.631 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315369
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.41736+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:12.715 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315370
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.417635+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:12.844 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315371
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.417823+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:13.021 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315372
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.418088+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:13.022 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315373
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.418362+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:13.151 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315374
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.419379+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:14.214 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315375
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.419885+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:14.225 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315376
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.420428+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:14.238 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315377
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.420673+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:15.205 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315378
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.421035+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:15.505 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315379
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.421237+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:15.616 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315380
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.421453+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:15.671 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315381
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.421812+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:15.860 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315382
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.422095+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:15.946 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315383
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.422392+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:16.183 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315384
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.422764+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:16.479 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315385
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.423022+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:16.500 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315386
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.423354+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:16.852 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315387
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.423678+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:16.981 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315388
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.423986+0200[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:17.492 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315389
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.42433+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:17.717 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315390
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.424603+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:17.999 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315391
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.425006+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:18.071 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315392
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.425335+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:18.195 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315393
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.425554+0200[inspect: regex stage]: none
[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:18.523 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315394
[inspect: output stage]: none
2022-09-16T14:57:18.425828+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:18.786 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315395
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.425995+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:19.190 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315396
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.426145+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:20.063 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315397
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.426299+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:20.377 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315398
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.426454+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:20.575 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315399
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.426615+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:20.631 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315400
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.426778+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:20.718 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315401
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.426947+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:20.844 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315402
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.427082+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:21.268 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315403
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.427273+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:21.305 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315404
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.427422+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:21.521 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.427594+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:22.071 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315405[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.427745+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:22.335 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315406
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.427914+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:22.472 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315407
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.42812+0200 [inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: labels stage]: none
2022-05-30 18:55:22.679 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315408
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.428244+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:22.763 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315409
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.428438+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:22.788 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315410
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.428631+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:23.021 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315412
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.4288+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:23.023 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315411
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.428919+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:23.255 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315413
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.429062+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:23.444 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315414
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.429238+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:23.777 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315415
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.429358+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:24.555 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315416
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.429517+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:25.710 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315417
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.429679+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:25.930 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315418
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.429786+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:26.092 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=2}}): totalPrice: 200.0, id:4315419
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.429899+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:26.225 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315420
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.430056+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:26.304 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315421
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.430183+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:26.493 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315422
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.430358+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:26.621 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315423
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.430491+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.060 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, fraud.exception:response-KO
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.43066+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.089 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315424
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.430781+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.216 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315425
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.430933+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.625 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315426
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.43107+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.718 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315428
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.431184+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.722 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315427
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.431315+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.856 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315429
[inspect: output stage]: none
2022-09-16T14:57:18.432139+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:27.976 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315430
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.432336+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:28.042 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315431
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.432819+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:28.439 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315432
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.432927+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:28.455 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315433
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.433141+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:29.230 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315434
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.433275+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:29.791 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315435
[inspect: output stage]: none
2022-09-16T14:57:18.433438+0200[inspect: timestamp stage]: none
[inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:55:30.090 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315436
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.43361+0200 [inspect: labels stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: timestamp stage]: none
2022-05-30 18:55:30.578 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315437
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.43373+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:30.639 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315438
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.433976+0200[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:30.852 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315439
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.434117+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:30.985 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315440
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.434336+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:31.293 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315441
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.434541+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:31.657 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315442
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.434766+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:32.004 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315443
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.434875+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:32.268 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315444
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.435002+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:32.301 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315445
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.435163+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:32.351 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=2}}): totalPrice: 1000.0, id:4315446
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.435431+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:32.479 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315447
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.435641+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:32.908 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315448
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.435796+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} [inspect: labels stage]: none
2022-05-30 18:55:33.063 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315450
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.435962+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:33.081 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315449
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.436085+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:33.454 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315451
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.436191+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:33.566 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315452
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.436316+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:55:33.604 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : Failure createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, fraud.exception:response-KO
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.436501+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:34.170 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=2}}): totalPrice: 400.0, id:4315453
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.436671+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:34.796 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315454
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.436816+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:35.071 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=2}}): totalPrice: 8.0, id:4315455
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.43701+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:35.271 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315456
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.437245+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:35.483 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315457
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.43737+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:36.048 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315458
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.437512+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:36.121 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315459
[inspect: output stage]: none
2022-09-16T14:57:18.437667+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:36.240 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315460
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.437845+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:36.512 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315461
[inspect: output stage]: none
2022-09-16T14:57:18.438097+0200[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: output stage]: none
2022-05-30 18:55:36.699 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315462
[inspect: timestamp stage]: none
2022-09-16T14:57:18.438511+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:36.955 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315463
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.438707+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:37.215 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=2, name='Game Console', price=200.0}, quantity=1}}): totalPrice: 200.0, id:4315464
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.438958+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:37.432 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315465
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.439164+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:37.708 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315466
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.439304+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:37.763 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=6, name='Phone', price=500.0}, quantity=1}}): totalPrice: 500.0, id:4315467
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.439502+0200[inspect: timestamp stage]: none
{__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:37.853 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315468
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.439704+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:37.951 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315469
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.43988+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:38.021 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=1}}): totalPrice: 9.0, id:4315471
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.440063+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:38.021 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=10, name='Micro USB Cable', price=3.0}, quantity=1}}): totalPrice: 3.0, id:4315470
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.440272+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:38.082 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315472
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.440486+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:39.271 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315473
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.440653+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.063 INFO 71935 --- [http-nio-8080-exec-1] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315474
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
[inspect: labels stage]: none
2022-09-16T14:57:18.440843+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.087 INFO 71935 --- [http-nio-8080-exec-8] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315475
[inspect: output stage]: none
2022-09-16T14:57:18.441084+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.198 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=1}}): totalPrice: 30.0, id:4315476
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: regex stage]: none
2022-09-16T14:57:18.441294+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.245 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315477
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.44156+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.387 INFO 71935 --- [http-nio-8080-exec-7] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=3, name='Sofa', price=100.0}, quantity=1}}): totalPrice: 100.0, id:4315478
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.441707+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.569 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315479
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.441905+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.678 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315480
[inspect: regex stage]: none
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.442041+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:40.897 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315481
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.442225+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:41.190 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=7, name='Watch', price=30.0}, quantity=2}}): totalPrice: 60.0, id:4315482
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.442405+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:41.259 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=5, name='Beer', price=3.0}, quantity=2}}): totalPrice: 6.0, id:4315483
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.44264+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:41.908 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315484
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.442877+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:42.082 INFO 71935 --- [http-nio-8080-exec-10] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=8, name='USB Cable', price=4.0}, quantity=1}}): totalPrice: 4.0, id:4315485
[inspect: labels stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: output stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.443081+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}[inspect: regex stage]: none
2022-05-30 18:55:42.126 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=1}}): totalPrice: 300.0, id:4315486
[inspect: output stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
2022-09-16T14:57:18.44322+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:42.420 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315487
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.443431+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:42.910 INFO 71935 --- [http-nio-8080-exec-6] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315488
[inspect: labels stage]: none
[inspect: timestamp stage]: none
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.443589+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:42.925 INFO 71935 --- [http-nio-8080-exec-2] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=11, name='Lightning Cable', price=9.0}, quantity=2}}): totalPrice: 18.0, id:4315489
[inspect: labels stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.443846+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:43.059 INFO 71935 --- [http-nio-8080-exec-9] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=4, name='Icecream', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315490
[inspect: regex stage]: none
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]: none
[inspect: output stage]: none
2022-09-16T14:57:18.44463+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:43.104 INFO 71935 --- [http-nio-8080-exec-4] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=12, name='USB C adapter', price=5.0}, quantity=1}}): totalPrice: 5.0, id:4315491
[inspect: timestamp stage]: none
[inspect: labels stage]: none
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: j.LocalContainerEntityManagerFactoryBean
{stages.Entry}.Extracted["message"]:
+: Closing JPA EntityManagerFactory for persistence unit 'default'
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 23:37:56.598
[inspect: output stage]: none
2022-09-16T14:57:18.445007+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:43.394 INFO 71935 --- [http-nio-8080-exec-5] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=9, name='USB-C Cable', price=5.0}, quantity=2}}): totalPrice: 10.0, id:4315492
[inspect: timestamp stage]: none
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Shutdown initiated...
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 23:37:56.629
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: output stage]: none
2022-09-16T14:57:18.445569+0200 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"} 2022-05-30 18:55:43.891 INFO 71935 --- [http-nio-8080-exec-3] c.m.e.controller.OrderController : SUCCESS createOrder(OrderForm{OrderProduct{product=Product{id=1, name='TV Set', price=300.0}, quantity=2}}): totalPrice: 600.0, id:4315493
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: regex stage]:
{stages.Entry}.Extracted["instrumentation_scope"]:
+: com.zaxxer.hikari.HikariDataSource
{stages.Entry}.Extracted["message"]:
+: HikariPool-1 - Shutdown completed.
{stages.Entry}.Extracted["process_id"]:
+: 71935
{stages.Entry}.Extracted["severity_text"]:
+: INFO
{stages.Entry}.Extracted["thread_name"]:
+: SpringApplicationShutdownHook
{stages.Entry}.Extracted["timestamp"]:
+: 2022-05-30 23:37:56.655
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.446216 +0200 CEST
+: 2022-05-30 23:37:56.598 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 23:37:56.598 INFO 71935 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
+: Closing JPA EntityManagerFactory for persistence unit 'default'
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.446423 +0200 CEST
+: 2022-05-30 23:37:56.629 +0000 UTC
2022-05-30T23:37:56.598+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="j.LocalContainerEntityManagerFactoryBean", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} Closing JPA EntityManagerFactory for persistence unit 'default'
[inspect: labels stage]:
{stages.Entry}.Entry.Labels:
-: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", job="my_shopping_cart_frontend"}
+: {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="SpringApplicationShutdownHook"}
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 23:37:56.629 INFO 71935 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
+: HikariPool-1 - Shutdown initiated...
2022-05-30T23:37:56.629+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} HikariPool-1 - Shutdown initiated...
[inspect: timestamp stage]:
{stages.Entry}.Entry.Entry.Timestamp:
-: 2022-09-16 14:57:18.446608 +0200 CEST
+: 2022-05-30 23:37:56.655 +0000 UTC
[inspect: output stage]:
{stages.Entry}.Entry.Entry.Line:
-: 2022-05-30 23:37:56.655 INFO 71935 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
+: HikariPool-1 - Shutdown completed.
2022-05-30T23:37:56.655+0000 {__path__="/usr/local/var/log/my-shopping-cart/frontend.log", instance="cyrillerclaptop", instrumentation_scope="com.zaxxer.hikari.HikariDataSource", job="my_shopping_cart_frontend", process_id="71935", severity_text="INFO", thread_name="SpringApplicationShutdownHook"} HikariPool-1 - Shutdown completed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment