diff --git a/be/.gitattributes b/be/.gitattributes index 69b7c61f4..16a14a5c7 100644 --- a/be/.gitattributes +++ b/be/.gitattributes @@ -1,2 +1,4 @@ * text=auto eol=lf +*.{cmd,[cC][mM][dD]} text eol=crlf +*.{bat,[bB][aA][tT]} text eol=crlf **/wwwroot/libs/** linguist-vendored diff --git a/be/Modules/Shared/src/Win_in.Sfs.Shared.Host/ModuleBase.cs b/be/Modules/Shared/src/Win_in.Sfs.Shared.Host/ModuleBase.cs index 121c3e40c..ec6c15925 100644 --- a/be/Modules/Shared/src/Win_in.Sfs.Shared.Host/ModuleBase.cs +++ b/be/Modules/Shared/src/Win_in.Sfs.Shared.Host/ModuleBase.cs @@ -208,7 +208,7 @@ public abstract class ModuleBase : AbpModule where T : AbpModule app.UseCorrelationId(); app.UseStaticFiles(); app.UseRouting(); - app.UseCors(); + app.UseCors("Default"); app.UseAuthentication(); app.UseJwtTokenMiddleware(); app.UseUnitOfWork(); @@ -246,20 +246,27 @@ public abstract class ModuleBase : AbpModule where T : AbpModule Console.WriteLine($"CORS Origins:{string.Concat(origins)}"); ServiceConfigurationContext.Services.AddCors(options => { - options.AddDefaultPolicy(builder => + //options.AddDefaultPolicy(builder => + //{ + // builder + // .WithOrigins( + // origins + // .Select(o => o.RemovePostFix("/")) + // .ToArray() + // ) + // //.AllowAnyOrigin()//允许所有跨域 + // //.WithAbpExposedHeaders() + // .SetIsOriginAllowedToAllowWildcardSubdomains() + // .AllowAnyHeader() + // .AllowAnyMethod() + // .AllowCredentials();//按配置文件中 跨域 + //}); + options.AddPolicy("Default", builder => { - builder - .WithOrigins( - origins - .Select(o => o.RemovePostFix("/")) - .ToArray() - ) - //.AllowAnyOrigin()//允许所有跨域 - //.WithAbpExposedHeaders() - .SetIsOriginAllowedToAllowWildcardSubdomains() - .AllowAnyHeader() - .AllowAnyMethod() - .AllowCredentials();//按配置文件中 跨域 + builder.SetIsOriginAllowed(isOriginAllowed => true) + .AllowAnyMethod() + .AllowAnyHeader() + .AllowCredentials(); }); }); } diff --git a/build/src/docker/.gitignore b/build/src/docker/.gitignore index 023d5b217..d002631dc 100644 --- a/build/src/docker/.gitignore +++ b/build/src/docker/.gitignore @@ -1,2 +1,3 @@ publish/data publish/logs +**/logs/ \ No newline at end of file diff --git a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.deps.json b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.deps.json index be8298908..a0af92215 100644 --- a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.deps.json +++ b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.deps.json @@ -6,7 +6,7 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v6.0": { - "Web.Gateway/0.1.1": { + "Web.Gateway/0.1.5": { "dependencies": { "Flurl": "3.0.7", "InfluxDB.Client": "4.11.0", @@ -480,7 +480,7 @@ } }, "libraries": { - "Web.Gateway/0.1.1": { + "Web.Gateway/0.1.5": { "type": "project", "serviceable": false, "sha512": "" diff --git a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.dll b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.dll index 7231f086a..961cd0322 100644 Binary files a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.dll and b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.dll differ diff --git a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.exe b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.exe index d6f98ae59..c4a9331a2 100644 Binary files a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.exe and b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.exe differ diff --git a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.pdb b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.pdb index b2d17d132..83c73dd42 100644 Binary files a/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.pdb and b/build/src/docker/publish/apps/be/Web.Gateway/Web.Gateway.pdb differ diff --git a/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Development.json b/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Development.json index 7ad52e96a..7eedc8a32 100644 --- a/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Development.json +++ b/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Development.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Production.json b/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Production.json new file mode 100644 index 000000000..2c63c0851 --- /dev/null +++ b/build/src/docker/publish/apps/be/Web.Gateway/appsettings.Production.json @@ -0,0 +1,2 @@ +{ +} diff --git a/build/src/docker/publish/apps/be/Web.Gateway/appsettings.json b/build/src/docker/publish/apps/be/Web.Gateway/appsettings.json index 627c787ce..ab204ea15 100644 --- a/build/src/docker/publish/apps/be/Web.Gateway/appsettings.json +++ b/build/src/docker/publish/apps/be/Web.Gateway/appsettings.json @@ -2,14 +2,38 @@ "ConnectionStrings": { "InfluxDB": "url=http://influxdb:8086;database=logs;usr=admin;pwd=aA123456!;retention-policy=d30;" }, + "CORS": { + "abp": { + "AllowAnyOrigin": false, + "Origins": [ + "http://localhost:9527" + ] + } + }, "ReverseProxy": { "Routes": { + "abp": { + "ClusterId": "abp", + "CorsPolicy": "abp", + "Match": { + "Path": "/api/auth/{regex((abp|identity|base|multi-tenancy|permission-management))}/{**catch-all}" + }, + "Transforms": [ + { + "PathRemovePrefix": "/api/auth" + } + ] + }, "ids4": { - "ClusterId": "ids4", + "ClusterId": "auth", "Match": { - "Path": "/api/connect/{**catch-all}" + "Path": "/api/auth/connect/{**catch-all}" }, - "Transforms": [ { "PathRemovePrefix": "/api" } ] + "Transforms": [ + { + "PathRemovePrefix": "/api/auth" + } + ] }, "auth": { "ClusterId": "auth", @@ -37,10 +61,10 @@ } }, "Clusters": { - "ids4": { + "abp": { "Destinations": { "dest": { - "Address": "http://sfs-auth-web:59093/" + "Address": "http://sfs-auth-web:59093/api/" } } }, diff --git a/build/src/docker/publish/apps/be/Web.Gateway/logs/log.txt b/build/src/docker/publish/apps/be/Web.Gateway/logs/log.txt deleted file mode 100644 index bd084dc1a..000000000 --- a/build/src/docker/publish/apps/be/Web.Gateway/logs/log.txt +++ /dev/null @@ -1,6824 +0,0 @@ -2023-04-05 02:04:09.679 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 02:04:09.719 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 02:04:09.737 +00:00 [INF] Loading proxy data from config. -2023-04-05 02:04:09.868 +00:00 [INF] Creating key {08875c93-f2d1-4ff6-9453-337d4df43f80} with creation date 2023-04-05 02:04:09Z, activation date 2023-04-05 02:04:09Z, and expiration date 2023-07-04 02:04:09Z. -2023-04-05 02:04:09.877 +00:00 [WRN] No XML encryptor configured. Key {08875c93-f2d1-4ff6-9453-337d4df43f80} may be persisted to storage in unencrypted form. -2023-04-05 02:04:09.880 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-08875c93-f2d1-4ff6-9453-337d4df43f80.xml'. -2023-04-05 02:04:09.905 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 02:04:09.908 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 02:04:09.908 +00:00 [INF] Hosting environment: Production -2023-04-05 02:04:09.909 +00:00 [INF] Content root path: /app/ -2023-04-05 02:04:12.325 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:04:12.357 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:04:12.358 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:04:12.368 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:04:12.370 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 41.0118 ms -2023-04-05 02:04:12.372 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 48.4435ms -2023-04-05 02:04:12.373 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=aC-5nip-u1adLaOfxlLKdA - - -2023-04-05 02:04:12.375 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:04:12.375 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:04:12.390 +00:00 [INF] 5FU5oLuiTdffCBnXuChyYw has connected -2023-04-05 02:04:57.544 +00:00 [INF] Application is shutting down... -2023-04-05 02:04:57.554 +00:00 [INF] 5FU5oLuiTdffCBnXuChyYw has disconnected: -2023-04-05 02:04:57.563 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:04:57.564 +00:00 [INF] HTTP GET /hub responded 101 in 45191.2525 ms -2023-04-05 02:04:57.565 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=aC-5nip-u1adLaOfxlLKdA - - - 101 - - 45192.4523ms -2023-04-05 02:04:57.572 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:04:57.575 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:04:57.575 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:04:57.576 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:04:57.576 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 3.6530 ms -2023-04-05 02:04:57.577 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 4.4569ms -2023-04-05 02:05:12.594 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 02:05:12.742 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 02:05:12.847 +00:00 [INF] Loading proxy data from config. -2023-04-05 02:05:13.217 +00:00 [INF] Creating key {63afe77a-a7b3-4a4e-828e-780bb34ad219} with creation date 2023-04-05 02:05:13Z, activation date 2023-04-05 02:05:13Z, and expiration date 2023-07-04 02:05:13Z. -2023-04-05 02:05:13.226 +00:00 [WRN] No XML encryptor configured. Key {63afe77a-a7b3-4a4e-828e-780bb34ad219} may be persisted to storage in unencrypted form. -2023-04-05 02:05:13.230 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-63afe77a-a7b3-4a4e-828e-780bb34ad219.xml'. -2023-04-05 02:05:13.255 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 02:05:13.257 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 02:05:13.257 +00:00 [INF] Hosting environment: Production -2023-04-05 02:05:13.258 +00:00 [INF] Content root path: /app/ -2023-04-05 02:05:18.330 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:05:18.363 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:05:18.365 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:05:18.375 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:05:18.376 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 42.9883 ms -2023-04-05 02:05:18.379 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 50.5822ms -2023-04-05 02:05:18.380 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=yJuRHm8zMg7ZTlger5VbgA - - -2023-04-05 02:05:18.382 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:05:18.382 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:05:18.397 +00:00 [INF] 6dK9Rcmf-7uaA_Lta0T9kQ has connected -2023-04-05 02:06:25.391 +00:00 [INF] Application is shutting down... -2023-04-05 02:06:25.402 +00:00 [INF] 6dK9Rcmf-7uaA_Lta0T9kQ has disconnected: -2023-04-05 02:06:25.413 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:06:25.417 +00:00 [INF] HTTP GET /hub responded 101 in 67037.1669 ms -2023-04-05 02:06:25.426 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=yJuRHm8zMg7ZTlger5VbgA - - - 101 - - 67045.3947ms -2023-04-05 02:07:08.917 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 02:07:08.971 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 02:07:08.990 +00:00 [INF] Loading proxy data from config. -2023-04-05 02:07:09.114 +00:00 [INF] Creating key {dd74faa8-f15f-4f3d-947a-f2e5b4bf65e0} with creation date 2023-04-05 02:07:09Z, activation date 2023-04-05 02:07:09Z, and expiration date 2023-07-04 02:07:09Z. -2023-04-05 02:07:09.122 +00:00 [WRN] No XML encryptor configured. Key {dd74faa8-f15f-4f3d-947a-f2e5b4bf65e0} may be persisted to storage in unencrypted form. -2023-04-05 02:07:09.124 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-dd74faa8-f15f-4f3d-947a-f2e5b4bf65e0.xml'. -2023-04-05 02:07:09.146 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 02:07:09.148 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 02:07:09.148 +00:00 [INF] Hosting environment: Production -2023-04-05 02:07:09.149 +00:00 [INF] Content root path: /app/ -2023-04-05 02:07:10.336 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:07:10.368 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:07:10.370 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:07:10.381 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:07:10.382 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 42.9392 ms -2023-04-05 02:07:10.383 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 49.9460ms -2023-04-05 02:07:10.385 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=vFBPQL9mv2rsGlpUJLKjUQ - - -2023-04-05 02:07:10.387 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:07:10.388 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:07:10.403 +00:00 [INF] yBGwwvLCoLlJtKunQ_MK6A has connected -2023-04-05 02:07:44.252 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 02:07:44.258 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 02:07:44.260 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 02:07:44.261 +00:00 [INF] HTTP GET / responded 302 in 8.4085 ms -2023-04-05 02:07:44.262 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 302 0 - 9.5133ms -2023-04-05 02:07:44.270 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - -2023-04-05 02:07:44.271 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:07:44.283 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:07:44.329 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 02:07:44.380 +00:00 [INF] Executed ViewResult - view Login executed in 50.5295ms. -2023-04-05 02:07:44.381 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 97.0996ms -2023-04-05 02:07:44.381 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:07:44.382 +00:00 [INF] HTTP GET /Account/Login responded 200 in 111.1327 ms -2023-04-05 02:07:44.384 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - - 200 - text/html;+charset=utf-8 113.4680ms -2023-04-05 02:07:44.406 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/pure-min.css - - -2023-04-05 02:07:44.423 +00:00 [INF] Sending file. Request path: '/lib/pure-min.css'. Physical path: '/app/wwwroot/lib/pure-min.css' -2023-04-05 02:07:44.424 +00:00 [INF] HTTP GET /lib/pure-min.css responded 200 in 16.9247 ms -2023-04-05 02:07:44.424 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/pure-min.css - - - 200 16797 text/css 18.0695ms -2023-04-05 02:07:44.425 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/vue.global.prod.js - - -2023-04-05 02:07:44.426 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/signalr.min.js - - -2023-04-05 02:07:44.426 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/pubsub.min.js - - -2023-04-05 02:07:44.428 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/fecha.min.js - - -2023-04-05 02:07:44.428 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/micromodal.min.js - - -2023-04-05 02:07:44.428 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/lib/codeflask.min.js - - -2023-04-05 02:07:44.439 +00:00 [INF] Sending file. Request path: '/lib/pubsub.min.js'. Physical path: '/app/wwwroot/lib/pubsub.min.js' -2023-04-05 02:07:44.441 +00:00 [INF] HTTP GET /lib/pubsub.min.js responded 200 in 13.6027 ms -2023-04-05 02:07:44.440 +00:00 [INF] Sending file. Request path: '/lib/signalr.min.js'. Physical path: '/app/wwwroot/lib/signalr.min.js' -2023-04-05 02:07:44.439 +00:00 [INF] Sending file. Request path: '/lib/fecha.min.js'. Physical path: '/app/wwwroot/lib/fecha.min.js' -2023-04-05 02:07:44.442 +00:00 [INF] Sending file. Request path: '/lib/codeflask.min.js'. Physical path: '/app/wwwroot/lib/codeflask.min.js' -2023-04-05 02:07:44.442 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/pubsub.min.js - - - 200 3362 application/javascript 15.1590ms -2023-04-05 02:07:44.440 +00:00 [INF] Sending file. Request path: '/lib/micromodal.min.js'. Physical path: '/app/wwwroot/lib/micromodal.min.js' -2023-04-05 02:07:44.442 +00:00 [INF] HTTP GET /lib/signalr.min.js responded 200 in 15.2298 ms -2023-04-05 02:07:44.442 +00:00 [INF] HTTP GET /lib/fecha.min.js responded 200 in 14.2472 ms -2023-04-05 02:07:44.443 +00:00 [INF] HTTP GET /lib/codeflask.min.js responded 200 in 13.4728 ms -2023-04-05 02:07:44.443 +00:00 [INF] HTTP GET /lib/micromodal.min.js responded 200 in 14.7587 ms -2023-04-05 02:07:44.444 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/signalr.min.js - - - 200 43394 application/javascript 17.7914ms -2023-04-05 02:07:44.444 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/fecha.min.js - - - 200 6281 application/javascript 16.3321ms -2023-04-05 02:07:44.444 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/codeflask.min.js - - - 200 24683 application/javascript 16.4579ms -2023-04-05 02:07:44.444 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/micromodal.min.js - - - 200 7102 application/javascript 16.6408ms -2023-04-05 02:07:44.448 +00:00 [INF] Sending file. Request path: '/lib/vue.global.prod.js'. Physical path: '/app/wwwroot/lib/vue.global.prod.js' -2023-04-05 02:07:44.448 +00:00 [INF] HTTP GET /lib/vue.global.prod.js responded 200 in 22.8663 ms -2023-04-05 02:07:44.448 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/lib/vue.global.prod.js - - - 200 128872 application/javascript 23.5945ms -2023-04-05 02:07:44.578 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/favicon.ico - - -2023-04-05 02:07:44.579 +00:00 [INF] HTTP GET /favicon.ico responded 404 in 0.9171 ms -2023-04-05 02:07:44.579 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/favicon.ico - - - 404 0 - 1.7049ms -2023-04-05 02:07:50.081 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 -2023-04-05 02:07:50.082 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:07:50.087 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:07:50.137 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 02:07:50.138 +00:00 [INF] Executing LocalRedirectResult, redirecting to /. -2023-04-05 02:07:50.139 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 51.055ms -2023-04-05 02:07:50.139 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:07:50.140 +00:00 [INF] HTTP POST /Account/Login responded 302 in 58.5379 ms -2023-04-05 02:07:50.140 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 - 302 0 - 59.1539ms -2023-04-05 02:07:50.145 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 02:07:50.146 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:07:50.152 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:07:50.154 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 1.2449ms -2023-04-05 02:07:50.154 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:07:50.155 +00:00 [ERR] HTTP GET / responded 500 in 9.5549 ms -System.NullReferenceException: Object reference not set to an instance of an object. - at Web.Gateway.HomeController..ctor(ILogger`1 logger, IConfiguration configuration, IHttpClientFactory httpClientFactory, IHubContext`1 hubContext) in E:\repo\WTA\be\src\Web.Gateway\Controllers\HomeController.cs:line 35 - at lambda_method37(Closure , IServiceProvider , Object[] ) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Authorization.Policy.AuthorizationMiddlewareResultHandler.HandleAsync(RequestDelegate next, HttpContext context, AuthorizationPolicy policy, PolicyAuthorizationResult authorizeResult) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext) -2023-04-05 02:07:50.174 +00:00 [ERR] Connection id "0HMPLF9RH6UCQ", Request id "0HMPLF9RH6UCQ:00000008": An unhandled exception was thrown by the application. -System.NullReferenceException: Object reference not set to an instance of an object. - at Web.Gateway.HomeController..ctor(ILogger`1 logger, IConfiguration configuration, IHttpClientFactory httpClientFactory, IHubContext`1 hubContext) in E:\repo\WTA\be\src\Web.Gateway\Controllers\HomeController.cs:line 35 - at lambda_method37(Closure , IServiceProvider , Object[] ) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Authorization.Policy.AuthorizationMiddlewareResultHandler.HandleAsync(RequestDelegate next, HttpContext context, AuthorizationPolicy policy, PolicyAuthorizationResult authorizeResult) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext) - at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol.ProcessRequests[TContext](IHttpApplication`1 application) -2023-04-05 02:07:50.175 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 500 0 - 30.7588ms -2023-04-05 02:08:04.133 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 02:08:04.135 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:08:04.136 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 02:08:04.137 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 02:08:04.137 +00:00 [INF] HTTP GET / responded 302 in 3.4645 ms -2023-04-05 02:08:04.138 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 302 0 - 4.1490ms -2023-04-05 02:08:04.141 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - -2023-04-05 02:08:04.142 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:08:04.143 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:08:04.143 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:08:04.144 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 02:08:04.147 +00:00 [INF] Executed ViewResult - view Login executed in 3.418ms. -2023-04-05 02:08:04.148 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 4.083ms -2023-04-05 02:08:04.148 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:08:04.148 +00:00 [INF] HTTP GET /Account/Login responded 200 in 6.8273 ms -2023-04-05 02:08:04.149 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - - 200 - text/html;+charset=utf-8 7.5419ms -2023-04-05 02:08:05.635 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 -2023-04-05 02:08:05.637 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:08:05.637 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:08:05.637 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:08:05.639 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 02:08:05.640 +00:00 [INF] Executing LocalRedirectResult, redirecting to /. -2023-04-05 02:08:05.640 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 2.6939ms -2023-04-05 02:08:05.641 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:08:05.641 +00:00 [INF] HTTP POST /Account/Login responded 302 in 5.2918 ms -2023-04-05 02:08:05.642 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 - 302 0 - 6.1745ms -2023-04-05 02:08:05.644 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 02:08:05.644 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:08:05.645 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:08:05.645 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 0.2767ms -2023-04-05 02:08:05.646 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:08:05.646 +00:00 [ERR] HTTP GET / responded 500 in 1.8311 ms -System.NullReferenceException: Object reference not set to an instance of an object. - at Web.Gateway.HomeController..ctor(ILogger`1 logger, IConfiguration configuration, IHttpClientFactory httpClientFactory, IHubContext`1 hubContext) in E:\repo\WTA\be\src\Web.Gateway\Controllers\HomeController.cs:line 35 - at lambda_method37(Closure , IServiceProvider , Object[] ) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Authorization.Policy.AuthorizationMiddlewareResultHandler.HandleAsync(RequestDelegate next, HttpContext context, AuthorizationPolicy policy, PolicyAuthorizationResult authorizeResult) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext) -2023-04-05 02:08:05.647 +00:00 [ERR] Connection id "0HMPLF9RH6UCO", Request id "0HMPLF9RH6UCO:00000006": An unhandled exception was thrown by the application. -System.NullReferenceException: Object reference not set to an instance of an object. - at Web.Gateway.HomeController..ctor(ILogger`1 logger, IConfiguration configuration, IHttpClientFactory httpClientFactory, IHubContext`1 hubContext) in E:\repo\WTA\be\src\Web.Gateway\Controllers\HomeController.cs:line 35 - at lambda_method37(Closure , IServiceProvider , Object[] ) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) - at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) - at Microsoft.AspNetCore.Authorization.Policy.AuthorizationMiddlewareResultHandler.HandleAsync(RequestDelegate next, HttpContext context, AuthorizationPolicy policy, PolicyAuthorizationResult authorizeResult) - at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) - at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) - at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext) - at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpProtocol.ProcessRequests[TContext](IHttpApplication`1 application) -2023-04-05 02:08:05.647 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 500 0 - 3.6973ms -2023-04-05 02:12:19.949 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 02:12:19.987 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 02:12:20.004 +00:00 [INF] Loading proxy data from config. -2023-04-05 02:12:20.145 +00:00 [INF] Creating key {c2b00d4a-85b9-4afd-997b-62fe66de23ce} with creation date 2023-04-05 02:12:20Z, activation date 2023-04-05 02:12:20Z, and expiration date 2023-07-04 02:12:20Z. -2023-04-05 02:12:20.154 +00:00 [WRN] No XML encryptor configured. Key {c2b00d4a-85b9-4afd-997b-62fe66de23ce} may be persisted to storage in unencrypted form. -2023-04-05 02:12:20.157 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-c2b00d4a-85b9-4afd-997b-62fe66de23ce.xml'. -2023-04-05 02:12:20.180 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 02:12:20.182 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 02:12:20.182 +00:00 [INF] Hosting environment: Production -2023-04-05 02:12:20.182 +00:00 [INF] Content root path: /app/ -2023-04-05 02:12:25.327 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:12:25.357 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:12:25.359 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:12:25.368 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:12:25.369 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 39.7930 ms -2023-04-05 02:12:25.371 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 46.4395ms -2023-04-05 02:12:25.372 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=AcIpTpNdLO9gHoZkKQ_rRw - - -2023-04-05 02:12:25.375 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:12:25.375 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:12:25.391 +00:00 [INF] d2cybT0D902AJ6p0Om57mg has connected -2023-04-05 02:12:56.189 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 02:12:56.194 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:12:56.197 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 02:12:56.199 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 02:12:56.199 +00:00 [INF] HTTP GET / responded 302 in 8.7261 ms -2023-04-05 02:12:56.199 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 302 0 - 10.1610ms -2023-04-05 02:12:56.202 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - -2023-04-05 02:12:56.202 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:12:56.203 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:12:56.215 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:12:56.254 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 02:12:56.274 +00:00 [ERR] An exception was thrown while deserializing the token. -Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The antiforgery token could not be decrypted. - ---> System.Security.Cryptography.CryptographicException: The key {dd74faa8-f15f-4f3d-947a-f2e5b4bf65e0} was not found in the key ring. For more information go to http://aka.ms/dataprotectionwarning - at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.UnprotectCore(Byte[] protectedData, Boolean allowOperationsOnRevokedKeys, UnprotectStatus& status) - at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.Unprotect(Byte[] protectedData) - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) - --- End of inner exception stack trace --- - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery.GetCookieTokenDoesNotThrow(HttpContext httpContext) -2023-04-05 02:12:56.304 +00:00 [INF] Executed ViewResult - view Login executed in 49.0776ms. -2023-04-05 02:12:56.304 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 89.1017ms -2023-04-05 02:12:56.305 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:12:56.305 +00:00 [INF] HTTP GET /Account/Login responded 200 in 103.1057 ms -2023-04-05 02:12:56.308 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - - 200 - text/html;+charset=utf-8 106.1987ms -2023-04-05 02:12:57.805 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 -2023-04-05 02:12:57.808 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:12:57.808 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:12:57.813 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:12:57.820 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 02:12:57.820 +00:00 [INF] Executing LocalRedirectResult, redirecting to /. -2023-04-05 02:12:57.821 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 7.0388ms -2023-04-05 02:12:57.821 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:12:57.821 +00:00 [INF] HTTP POST /Account/Login responded 302 in 15.2788 ms -2023-04-05 02:12:57.821 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 - 302 0 - 16.2858ms -2023-04-05 02:12:57.824 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 02:12:57.826 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:12:57.832 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:12:57.855 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 02:12:57.856 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 02:12:57.884 +00:00 [INF] Received HTTP response headers after 25.5012ms - 200 -2023-04-05 02:12:57.885 +00:00 [INF] End processing HTTP request after 30.8376ms - 200 -2023-04-05 02:12:57.893 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:12:57.893 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:12:57.894 +00:00 [INF] Received HTTP response headers after 0.9398ms - 200 -2023-04-05 02:12:57.894 +00:00 [INF] End processing HTTP request after 1.6744ms - 200 -2023-04-05 02:12:57.896 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 02:12:57.908 +00:00 [INF] Executed ViewResult - view Index executed in 12.1332ms. -2023-04-05 02:12:57.909 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 76.3331ms -2023-04-05 02:12:57.909 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:12:57.910 +00:00 [INF] HTTP GET / responded 200 in 85.5370 ms -2023-04-05 02:12:57.911 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 200 - text/html;+charset=utf-8 86.4769ms -2023-04-05 02:12:57.922 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:12:57.923 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:12:57.924 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:12:57.924 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.5096 ms -2023-04-05 02:12:57.925 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 2.3267ms -2023-04-05 02:12:57.950 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=dTmHdSQ46fE0PzSjHF2Hsg - - -2023-04-05 02:12:57.951 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:12:57.955 +00:00 [INF] C1E6Pb6K4faRk8X69mqPPg has connected -2023-04-05 02:14:53.839 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 02:14:53.851 +00:00 [INF] Sending file. Request path: '/settings//appsettings.json'. Physical path: '/app/wwwroot/settings/appsettings.json' -2023-04-05 02:14:53.852 +00:00 [INF] HTTP GET /settings//appsettings.json responded 200 in 12.0956 ms -2023-04-05 02:14:53.852 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 200 5128 application/json 12.8055ms -2023-04-05 02:14:53.897 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 02:14:53.904 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 02:14:53.904 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 7.4152 ms -2023-04-05 02:14:53.905 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 8.1292ms -2023-04-05 02:14:53.925 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 02:14:53.933 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 02:14:53.933 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 7.3787 ms -2023-04-05 02:14:53.934 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 8.1024ms -2023-04-05 02:15:00.091 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 65409 -2023-04-05 02:15:00.091 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:00.094 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:00.459 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:00.460 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 366.0578ms -2023-04-05 02:15:00.460 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:00.460 +00:00 [INF] HTTP POST / responded 200 in 369.5661 ms -2023-04-05 02:15:00.461 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 65409 - 200 0 - 370.8545ms -2023-04-05 02:15:04.498 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 954 -2023-04-05 02:15:04.499 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:04.499 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:04.526 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:04.526 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7381ms -2023-04-05 02:15:04.526 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:04.527 +00:00 [INF] HTTP POST / responded 200 in 27.9595 ms -2023-04-05 02:15:04.527 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 954 - 200 0 - 28.6024ms -2023-04-05 02:15:09.084 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T00%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=100&enalbeTail=true - - -2023-04-05 02:15:09.086 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:09.087 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:09.089 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 02:15:09.090 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 02:15:09.092 +00:00 [INF] Received HTTP response headers after 1.6874ms - 200 -2023-04-05 02:15:09.092 +00:00 [INF] End processing HTTP request after 3.0362ms - 200 -2023-04-05 02:15:09.096 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:15:09.097 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:15:09.097 +00:00 [INF] Received HTTP response headers after 0.4239ms - 200 -2023-04-05 02:15:09.097 +00:00 [INF] End processing HTTP request after 1.3588ms - 200 -2023-04-05 02:15:09.101 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 02:15:09.103 +00:00 [INF] Executed ViewResult - view Index executed in 1.5254ms. -2023-04-05 02:15:09.103 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 15.5522ms -2023-04-05 02:15:09.103 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:09.104 +00:00 [INF] HTTP GET / responded 200 in 18.6780 ms -2023-04-05 02:15:09.104 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T00%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=100&enalbeTail=true - - - 200 - text/html;+charset=utf-8 19.9422ms -2023-04-05 02:15:09.126 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:15:09.127 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:15:09.127 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:15:09.128 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.0270 ms -2023-04-05 02:15:09.128 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 1.7787ms -2023-04-05 02:15:09.150 +00:00 [INF] C1E6Pb6K4faRk8X69mqPPg has disconnected: -2023-04-05 02:15:09.154 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:15:09.154 +00:00 [INF] HTTP GET /hub responded 101 in 131199.6658 ms -2023-04-05 02:15:09.155 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=dTmHdSQ46fE0PzSjHF2Hsg - - - 101 - - 131200.4508ms -2023-04-05 02:15:09.156 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=om_AMZWSVGlP_14xlTeZ7g - - -2023-04-05 02:15:09.156 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:15:09.158 +00:00 [INF] XgxRwHOo8epGao8SLTv7OQ has connected -2023-04-05 02:15:10.573 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 14463 -2023-04-05 02:15:10.573 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:10.574 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:10.603 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:10.604 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.2797ms -2023-04-05 02:15:10.604 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:10.604 +00:00 [INF] HTTP POST / responded 200 in 30.9444 ms -2023-04-05 02:15:10.605 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 14463 - 200 0 - 31.8487ms -2023-04-05 02:15:12.703 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 204624 -2023-04-05 02:15:12.704 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:12.704 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:12.786 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:12.787 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 81.9633ms -2023-04-05 02:15:12.787 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:12.787 +00:00 [INF] HTTP POST / responded 200 in 83.5222 ms -2023-04-05 02:15:12.788 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 204624 - 200 0 - 84.9950ms -2023-04-05 02:15:14.822 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 15681 -2023-04-05 02:15:14.822 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:14.823 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:14.851 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:14.852 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.982ms -2023-04-05 02:15:14.852 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:14.853 +00:00 [INF] HTTP POST / responded 200 in 30.3526 ms -2023-04-05 02:15:14.853 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 15681 - 200 0 - 30.9881ms -2023-04-05 02:15:18.896 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 5763 -2023-04-05 02:15:18.896 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:18.897 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:18.924 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:18.924 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.3266ms -2023-04-05 02:15:18.925 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:18.925 +00:00 [INF] HTTP POST / responded 200 in 28.7579 ms -2023-04-05 02:15:18.925 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 5763 - 200 0 - 29.5428ms -2023-04-05 02:15:20.970 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 35394 -2023-04-05 02:15:20.971 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:20.971 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:21.043 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:21.044 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 72.3841ms -2023-04-05 02:15:21.044 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:21.044 +00:00 [INF] HTTP POST / responded 200 in 73.5620 ms -2023-04-05 02:15:21.045 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 35394 - 200 0 - 74.5950ms -2023-04-05 02:15:25.081 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 21559 -2023-04-05 02:15:25.081 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:25.082 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:25.109 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:25.109 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2114ms -2023-04-05 02:15:25.109 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:25.109 +00:00 [INF] HTTP POST / responded 200 in 28.2270 ms -2023-04-05 02:15:25.110 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 21559 - 200 0 - 28.9425ms -2023-04-05 02:15:27.136 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 7736 -2023-04-05 02:15:27.137 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:27.137 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:27.164 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:27.164 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7661ms -2023-04-05 02:15:27.164 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:27.164 +00:00 [INF] HTTP POST / responded 200 in 27.6669 ms -2023-04-05 02:15:27.164 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 7736 - 200 0 - 28.2252ms -2023-04-05 02:15:31.192 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:15:31.193 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:31.193 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:31.219 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:31.220 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5174ms -2023-04-05 02:15:31.220 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:31.220 +00:00 [INF] HTTP POST / responded 200 in 27.5743 ms -2023-04-05 02:15:31.220 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2328ms -2023-04-05 02:15:35.251 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:15:35.252 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:35.252 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:35.278 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:35.279 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4841ms -2023-04-05 02:15:35.279 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:35.279 +00:00 [INF] HTTP POST / responded 200 in 27.4971 ms -2023-04-05 02:15:35.279 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0799ms -2023-04-05 02:15:41.327 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:15:41.328 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:41.328 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:41.355 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:41.355 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7922ms -2023-04-05 02:15:41.356 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:41.356 +00:00 [INF] HTTP POST / responded 200 in 28.5777 ms -2023-04-05 02:15:41.356 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3439ms -2023-04-05 02:15:45.388 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:15:45.388 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:45.389 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:45.415 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:45.416 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7759ms -2023-04-05 02:15:45.416 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:45.416 +00:00 [INF] HTTP POST / responded 200 in 27.9017 ms -2023-04-05 02:15:45.416 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5030ms -2023-04-05 02:15:51.463 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:15:51.464 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:51.464 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:51.490 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:51.491 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5692ms -2023-04-05 02:15:51.491 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:51.491 +00:00 [INF] HTTP POST / responded 200 in 27.6623 ms -2023-04-05 02:15:51.491 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2803ms -2023-04-05 02:15:55.533 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:15:55.533 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:55.534 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:15:55.560 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:15:55.560 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6932ms -2023-04-05 02:15:55.561 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:15:55.561 +00:00 [INF] HTTP POST / responded 200 in 28.1833 ms -2023-04-05 02:15:55.562 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1386ms -2023-04-05 02:16:01.604 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:01.605 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:01.605 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:01.632 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:01.632 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9039ms -2023-04-05 02:16:01.632 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:01.632 +00:00 [INF] HTTP POST / responded 200 in 28.0383 ms -2023-04-05 02:16:01.633 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5724ms -2023-04-05 02:16:05.673 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:05.674 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:05.674 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:05.701 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:05.701 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6204ms -2023-04-05 02:16:05.702 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:05.702 +00:00 [INF] HTTP POST / responded 200 in 27.9037 ms -2023-04-05 02:16:05.702 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5892ms -2023-04-05 02:16:11.756 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:11.757 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:11.757 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:11.783 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:11.784 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3647ms -2023-04-05 02:16:11.784 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:11.784 +00:00 [INF] HTTP POST / responded 200 in 27.3720 ms -2023-04-05 02:16:11.784 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0649ms -2023-04-05 02:16:15.816 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:15.816 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:15.817 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:15.843 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:15.843 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3658ms -2023-04-05 02:16:15.843 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:15.844 +00:00 [INF] HTTP POST / responded 200 in 27.3453 ms -2023-04-05 02:16:15.844 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9082ms -2023-04-05 02:16:21.893 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:21.893 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:21.893 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:21.920 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:21.920 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5747ms -2023-04-05 02:16:21.920 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:21.921 +00:00 [INF] HTTP POST / responded 200 in 27.7460 ms -2023-04-05 02:16:21.921 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4207ms -2023-04-05 02:16:25.974 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:25.976 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:25.976 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:26.003 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:26.003 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1523ms -2023-04-05 02:16:26.004 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:26.004 +00:00 [INF] HTTP POST / responded 200 in 29.2257 ms -2023-04-05 02:16:26.005 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.1874ms -2023-04-05 02:16:32.047 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:32.047 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:32.048 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:32.074 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:32.074 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5187ms -2023-04-05 02:16:32.075 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:32.075 +00:00 [INF] HTTP POST / responded 200 in 27.6737 ms -2023-04-05 02:16:32.075 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3589ms -2023-04-05 02:16:36.130 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:36.132 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:36.132 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:36.161 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:36.162 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.7545ms -2023-04-05 02:16:36.162 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:36.162 +00:00 [INF] HTTP POST / responded 200 in 31.0731 ms -2023-04-05 02:16:36.163 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 32.5861ms -2023-04-05 02:16:40.221 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:40.222 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:40.223 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:40.249 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:40.250 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6768ms -2023-04-05 02:16:40.250 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:40.250 +00:00 [INF] HTTP POST / responded 200 in 28.8229 ms -2023-04-05 02:16:40.251 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.1859ms -2023-04-05 02:16:46.303 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:46.303 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:46.304 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:46.333 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:46.333 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.0573ms -2023-04-05 02:16:46.334 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:46.334 +00:00 [INF] HTTP POST / responded 200 in 30.7155 ms -2023-04-05 02:16:46.334 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.8501ms -2023-04-05 02:16:50.384 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:50.384 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:50.385 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:50.412 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:50.412 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.984ms -2023-04-05 02:16:50.413 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:50.413 +00:00 [INF] HTTP POST / responded 200 in 28.3783 ms -2023-04-05 02:16:50.413 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3938ms -2023-04-05 02:16:56.446 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:16:56.446 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:56.447 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:16:56.474 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:16:56.474 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1381ms -2023-04-05 02:16:56.474 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:16:56.475 +00:00 [INF] HTTP POST / responded 200 in 28.2667 ms -2023-04-05 02:16:56.475 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9278ms -2023-04-05 02:17:00.504 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:00.504 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:00.504 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:00.531 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:00.531 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6848ms -2023-04-05 02:17:00.531 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:00.531 +00:00 [INF] HTTP POST / responded 200 in 27.5972 ms -2023-04-05 02:17:00.532 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1464ms -2023-04-05 02:17:06.577 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:06.578 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:06.578 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:06.604 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:06.605 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6466ms -2023-04-05 02:17:06.605 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:06.605 +00:00 [INF] HTTP POST / responded 200 in 27.6359 ms -2023-04-05 02:17:06.606 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2968ms -2023-04-05 02:17:10.638 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:10.639 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:10.639 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:10.665 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:10.666 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.732ms -2023-04-05 02:17:10.666 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:10.666 +00:00 [INF] HTTP POST / responded 200 in 27.9129 ms -2023-04-05 02:17:10.666 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4599ms -2023-04-05 02:17:16.737 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:16.738 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:16.739 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:16.765 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:16.766 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6397ms -2023-04-05 02:17:16.766 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:16.766 +00:00 [INF] HTTP POST / responded 200 in 28.0457 ms -2023-04-05 02:17:16.767 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1451ms -2023-04-05 02:17:20.799 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:20.799 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:20.799 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:20.825 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:20.826 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2712ms -2023-04-05 02:17:20.826 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:20.826 +00:00 [INF] HTTP POST / responded 200 in 27.2290 ms -2023-04-05 02:17:20.826 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8127ms -2023-04-05 02:17:26.863 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:26.863 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:26.864 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:26.890 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:26.890 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3225ms -2023-04-05 02:17:26.891 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:26.891 +00:00 [INF] HTTP POST / responded 200 in 27.5904 ms -2023-04-05 02:17:26.891 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3034ms -2023-04-05 02:17:30.919 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:30.919 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:30.920 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:30.946 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:30.946 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3947ms -2023-04-05 02:17:30.947 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:30.947 +00:00 [INF] HTTP POST / responded 200 in 27.3989 ms -2023-04-05 02:17:30.947 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9981ms -2023-04-05 02:17:35.000 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 3119 -2023-04-05 02:17:35.001 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:35.001 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:35.027 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:35.028 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5376ms -2023-04-05 02:17:35.028 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:35.028 +00:00 [INF] HTTP POST / responded 200 in 27.5363 ms -2023-04-05 02:17:35.028 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 3119 - 200 0 - 28.1225ms -2023-04-05 02:17:37.052 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:37.052 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:37.053 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:37.079 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:37.079 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2488ms -2023-04-05 02:17:37.079 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:37.080 +00:00 [INF] HTTP POST / responded 200 in 27.1774 ms -2023-04-05 02:17:37.080 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.7363ms -2023-04-05 02:17:41.128 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:17:41.129 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:41.129 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:41.155 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:41.156 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3484ms -2023-04-05 02:17:41.156 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:41.156 +00:00 [INF] HTTP POST / responded 200 in 27.4945 ms -2023-04-05 02:17:41.157 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.1785ms -2023-04-05 02:17:47.193 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:47.194 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:47.194 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:47.220 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:47.221 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4113ms -2023-04-05 02:17:47.221 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:47.221 +00:00 [INF] HTTP POST / responded 200 in 27.4577 ms -2023-04-05 02:17:47.221 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1862ms -2023-04-05 02:17:51.270 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:17:51.270 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:51.270 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:51.297 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:51.297 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3672ms -2023-04-05 02:17:51.297 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:51.297 +00:00 [INF] HTTP POST / responded 200 in 27.3180 ms -2023-04-05 02:17:51.298 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9309ms -2023-04-05 02:17:55.361 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 5307 -2023-04-05 02:17:55.362 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:55.362 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:55.437 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:55.437 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 75.0005ms -2023-04-05 02:17:55.437 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:55.438 +00:00 [INF] HTTP POST / responded 200 in 76.0192 ms -2023-04-05 02:17:55.438 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 5307 - 200 0 - 76.6825ms -2023-04-05 02:17:57.513 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 25178 -2023-04-05 02:17:57.514 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:57.514 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:17:57.541 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:17:57.542 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0629ms -2023-04-05 02:17:57.542 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:17:57.542 +00:00 [INF] HTTP POST / responded 200 in 28.5845 ms -2023-04-05 02:17:57.542 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 25178 - 200 0 - 29.4557ms -2023-04-05 02:18:01.604 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:01.605 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:01.605 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:01.631 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:01.631 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4812ms -2023-04-05 02:18:01.632 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:01.632 +00:00 [INF] HTTP POST / responded 200 in 27.4361 ms -2023-04-05 02:18:01.632 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0285ms -2023-04-05 02:18:07.682 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:07.683 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:07.683 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:07.709 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:07.709 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1965ms -2023-04-05 02:18:07.710 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:07.710 +00:00 [INF] HTTP POST / responded 200 in 27.0594 ms -2023-04-05 02:18:07.710 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.6216ms -2023-04-05 02:18:11.754 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:11.754 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:11.755 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:11.781 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:11.782 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5199ms -2023-04-05 02:18:11.782 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:11.782 +00:00 [INF] HTTP POST / responded 200 in 28.2073 ms -2023-04-05 02:18:11.782 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9462ms -2023-04-05 02:18:17.832 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:17.832 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:17.832 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:17.858 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:17.859 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2797ms -2023-04-05 02:18:17.859 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:17.859 +00:00 [INF] HTTP POST / responded 200 in 27.2822 ms -2023-04-05 02:18:17.860 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8757ms -2023-04-05 02:18:21.917 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:21.917 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:21.917 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:21.943 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:21.944 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3782ms -2023-04-05 02:18:21.944 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:21.945 +00:00 [INF] HTTP POST / responded 200 in 27.5969 ms -2023-04-05 02:18:21.945 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3644ms -2023-04-05 02:18:25.991 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:25.991 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:25.991 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:26.018 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:26.018 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4333ms -2023-04-05 02:18:26.018 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:26.019 +00:00 [INF] HTTP POST / responded 200 in 27.5637 ms -2023-04-05 02:18:26.019 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2507ms -2023-04-05 02:18:32.054 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:32.055 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:32.055 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:32.081 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:32.082 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4431ms -2023-04-05 02:18:32.082 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:32.082 +00:00 [INF] HTTP POST / responded 200 in 27.5263 ms -2023-04-05 02:18:32.083 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3374ms -2023-04-05 02:18:36.135 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:36.135 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:36.135 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:36.162 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:36.162 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1947ms -2023-04-05 02:18:36.162 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:36.162 +00:00 [INF] HTTP POST / responded 200 in 27.1424 ms -2023-04-05 02:18:36.162 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.6948ms -2023-04-05 02:18:42.225 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:42.226 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:42.226 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:42.253 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:42.253 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6861ms -2023-04-05 02:18:42.254 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:42.254 +00:00 [INF] HTTP POST / responded 200 in 28.3110 ms -2023-04-05 02:18:42.254 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9218ms -2023-04-05 02:18:46.306 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:46.307 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:46.307 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:46.333 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:46.334 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.468ms -2023-04-05 02:18:46.334 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:46.334 +00:00 [INF] HTTP POST / responded 200 in 28.2158 ms -2023-04-05 02:18:46.335 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0051ms -2023-04-05 02:18:52.388 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:52.388 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:52.388 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:52.414 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:52.415 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3297ms -2023-04-05 02:18:52.415 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:52.415 +00:00 [INF] HTTP POST / responded 200 in 27.2624 ms -2023-04-05 02:18:52.416 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9209ms -2023-04-05 02:18:56.464 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:18:56.465 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:56.465 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:18:56.491 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:18:56.491 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2085ms -2023-04-05 02:18:56.492 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:18:56.492 +00:00 [INF] HTTP POST / responded 200 in 27.2482 ms -2023-04-05 02:18:56.492 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8322ms -2023-04-05 02:19:02.545 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:02.546 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:02.546 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:02.572 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:02.572 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4091ms -2023-04-05 02:19:02.573 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:02.573 +00:00 [INF] HTTP POST / responded 200 in 27.4095 ms -2023-04-05 02:19:02.573 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9939ms -2023-04-05 02:19:06.616 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:06.616 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:06.617 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:06.643 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:06.644 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2389ms -2023-04-05 02:19:06.645 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:06.645 +00:00 [INF] HTTP POST / responded 200 in 28.6217 ms -2023-04-05 02:19:06.645 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4792ms -2023-04-05 02:19:12.690 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:12.690 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:12.691 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:12.717 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:12.717 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5743ms -2023-04-05 02:19:12.718 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:12.718 +00:00 [INF] HTTP POST / responded 200 in 27.9642 ms -2023-04-05 02:19:12.719 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9494ms -2023-04-05 02:19:16.745 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:16.746 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:16.746 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:16.773 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:16.773 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5469ms -2023-04-05 02:19:16.773 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:16.774 +00:00 [INF] HTTP POST / responded 200 in 28.2264 ms -2023-04-05 02:19:16.774 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1650ms -2023-04-05 02:19:18.816 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 3034 -2023-04-05 02:19:18.817 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:18.817 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:18.844 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:18.844 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3013ms -2023-04-05 02:19:18.844 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:18.845 +00:00 [INF] HTTP POST / responded 200 in 27.8953 ms -2023-04-05 02:19:18.845 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 3034 - 200 0 - 28.7908ms -2023-04-05 02:19:20.873 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 9322 -2023-04-05 02:19:20.873 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:20.873 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:20.946 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:20.947 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 73.158ms -2023-04-05 02:19:20.947 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:20.947 +00:00 [INF] HTTP POST / responded 200 in 74.1005 ms -2023-04-05 02:19:20.947 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 9322 - 200 0 - 74.6758ms -2023-04-05 02:19:22.983 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:19:22.984 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:22.984 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:23.010 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:23.011 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3132ms -2023-04-05 02:19:23.011 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:23.012 +00:00 [INF] HTTP POST / responded 200 in 28.8197 ms -2023-04-05 02:19:23.013 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 30.1309ms -2023-04-05 02:19:27.059 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:27.059 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:27.059 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:27.086 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:27.086 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4609ms -2023-04-05 02:19:27.086 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:27.086 +00:00 [INF] HTTP POST / responded 200 in 27.3760 ms -2023-04-05 02:19:27.087 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9700ms -2023-04-05 02:19:33.139 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:33.140 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:33.140 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:33.166 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:33.167 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2786ms -2023-04-05 02:19:33.167 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:33.167 +00:00 [INF] HTTP POST / responded 200 in 27.4274 ms -2023-04-05 02:19:33.167 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1024ms -2023-04-05 02:19:37.206 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:37.207 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:37.207 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:37.233 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:37.234 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.235ms -2023-04-05 02:19:37.234 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:37.234 +00:00 [INF] HTTP POST / responded 200 in 27.4139 ms -2023-04-05 02:19:37.234 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3361ms -2023-04-05 02:19:43.302 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:43.302 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:43.303 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:43.329 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:43.329 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2327ms -2023-04-05 02:19:43.329 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:43.330 +00:00 [INF] HTTP POST / responded 200 in 27.2943 ms -2023-04-05 02:19:43.330 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9392ms -2023-04-05 02:19:47.372 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:47.372 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:47.373 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:47.399 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:47.399 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5966ms -2023-04-05 02:19:47.400 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:47.400 +00:00 [INF] HTTP POST / responded 200 in 27.9664 ms -2023-04-05 02:19:47.400 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6148ms -2023-04-05 02:19:51.467 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:51.468 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:51.468 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:51.494 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:51.495 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2377ms -2023-04-05 02:19:51.495 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:51.495 +00:00 [INF] HTTP POST / responded 200 in 27.3289 ms -2023-04-05 02:19:51.495 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2839ms -2023-04-05 02:19:57.547 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:19:57.548 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:57.548 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:19:57.575 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:19:57.575 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.906ms -2023-04-05 02:19:57.576 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:19:57.576 +00:00 [INF] HTTP POST / responded 200 in 28.6129 ms -2023-04-05 02:19:57.576 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2490ms -2023-04-05 02:20:01.607 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:20:01.607 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:01.608 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:20:01.634 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:20:01.634 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4182ms -2023-04-05 02:20:01.635 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:01.635 +00:00 [INF] HTTP POST / responded 200 in 27.9603 ms -2023-04-05 02:20:01.635 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6670ms -2023-04-05 02:20:07.672 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:20:07.672 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:07.672 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:20:07.698 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:20:07.699 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2365ms -2023-04-05 02:20:07.699 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:07.699 +00:00 [INF] HTTP POST / responded 200 in 27.2811 ms -2023-04-05 02:20:07.699 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8266ms -2023-04-05 02:20:11.750 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:20:11.750 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:11.751 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:20:11.777 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:20:11.777 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.237ms -2023-04-05 02:20:11.777 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:11.778 +00:00 [INF] HTTP POST / responded 200 in 27.3061 ms -2023-04-05 02:20:11.778 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9413ms -2023-04-05 02:20:17.837 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:20:17.838 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:17.838 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:20:17.864 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:20:17.865 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3356ms -2023-04-05 02:20:17.865 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:17.865 +00:00 [INF] HTTP POST / responded 200 in 27.3086 ms -2023-04-05 02:20:17.865 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8470ms -2023-04-05 02:20:21.937 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:20:21.938 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:21.938 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:20:21.965 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:20:21.965 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8993ms -2023-04-05 02:20:21.966 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:21.966 +00:00 [INF] HTTP POST / responded 200 in 28.3731 ms -2023-04-05 02:20:21.966 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5184ms -2023-04-05 02:20:28.003 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:20:28.003 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:28.004 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:20:28.030 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:20:28.030 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3144ms -2023-04-05 02:20:28.030 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:20:28.031 +00:00 [INF] HTTP POST / responded 200 in 27.2708 ms -2023-04-05 02:20:28.031 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 27.8452ms -2023-04-05 02:21:20.701 +00:00 [INF] Application is shutting down... -2023-04-05 02:21:20.703 +00:00 [INF] d2cybT0D902AJ6p0Om57mg has disconnected: -2023-04-05 02:21:20.704 +00:00 [INF] XgxRwHOo8epGao8SLTv7OQ has disconnected: -2023-04-05 02:21:20.704 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:21:20.704 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:21:20.704 +00:00 [INF] HTTP GET /hub responded 101 in 535331.8045 ms -2023-04-05 02:21:20.705 +00:00 [INF] HTTP GET /hub responded 101 in 371553.1927 ms -2023-04-05 02:21:20.705 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=AcIpTpNdLO9gHoZkKQ_rRw - - - 101 - - 535332.7477ms -2023-04-05 02:21:20.705 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=om_AMZWSVGlP_14xlTeZ7g - - - 101 - - 371554.0359ms -2023-04-05 02:21:25.910 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 02:21:25.945 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 02:21:25.957 +00:00 [INF] Loading proxy data from config. -2023-04-05 02:21:26.059 +00:00 [INF] Creating key {e6ab7bc9-76bc-43d8-9b6a-b1b5611f25b9} with creation date 2023-04-05 02:21:26Z, activation date 2023-04-05 02:21:26Z, and expiration date 2023-07-04 02:21:26Z. -2023-04-05 02:21:26.066 +00:00 [WRN] No XML encryptor configured. Key {e6ab7bc9-76bc-43d8-9b6a-b1b5611f25b9} may be persisted to storage in unencrypted form. -2023-04-05 02:21:26.068 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-e6ab7bc9-76bc-43d8-9b6a-b1b5611f25b9.xml'. -2023-04-05 02:21:26.086 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 02:21:26.088 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 02:21:26.088 +00:00 [INF] Hosting environment: Production -2023-04-05 02:21:26.089 +00:00 [INF] Content root path: /app/ -2023-04-05 02:21:26.322 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:21:26.322 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:21:26.354 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:26.354 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:26.356 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:21:26.356 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:21:26.368 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:21:26.368 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:21:26.370 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 44.8249 ms -2023-04-05 02:21:26.370 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 44.4048 ms -2023-04-05 02:21:26.372 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 52.7553ms -2023-04-05 02:21:26.372 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 52.7485ms -2023-04-05 02:21:26.373 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=hpyUwxN8MxtH1oorA-dDyA - - -2023-04-05 02:21:26.376 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:26.376 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:21:26.389 +00:00 [INF] 0eBJsjzgm8aVd0etVR7O_w has connected -2023-04-05 02:21:26.397 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=MBXbS27S_wCA4E2etba0JQ - - -2023-04-05 02:21:26.398 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:26.398 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:21:26.401 +00:00 [INF] Uaq_uFCDkpSu3O0Kxz_RMA has connected -2023-04-05 02:21:43.809 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - -2023-04-05 02:21:43.811 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:43.813 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 02:21:43.815 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 02:21:43.816 +00:00 [INF] HTTP GET / responded 302 in 5.7076 ms -2023-04-05 02:21:43.816 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - - 302 0 - 6.7391ms -2023-04-05 02:21:43.819 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F%3Fquery%3Dselect%2B*%2Bfrom%2Blog%2Bwhere%2Btime%253E%253D%25272023-04-05T08%253A00%253A00.0000000Z%2527%2Band%2Btime%253C%253D%25272023-04-06T00%253A00%253A00.0000000Z%2527%2Border%2Bby%2Btime%2Bdesc%2Blimit%2B100%2Boffset%2B0%26applicationName%3D%26level%3D%26start%3D2023-04-05T08%253A00%26end%3D2023-04-06T00%253A00%253A00.000Z%26pageSize%3D10%26enalbeTail%3Dtrue - - -2023-04-05 02:21:43.821 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:43.821 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:21:43.833 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:21:43.872 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 02:21:43.897 +00:00 [ERR] An exception was thrown while deserializing the token. -Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The antiforgery token could not be decrypted. - ---> System.Security.Cryptography.CryptographicException: The key {c2b00d4a-85b9-4afd-997b-62fe66de23ce} was not found in the key ring. For more information go to http://aka.ms/dataprotectionwarning - at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.UnprotectCore(Byte[] protectedData, Boolean allowOperationsOnRevokedKeys, UnprotectStatus& status) - at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.Unprotect(Byte[] protectedData) - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) - --- End of inner exception stack trace --- - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery.GetCookieTokenDoesNotThrow(HttpContext httpContext) -2023-04-05 02:21:43.929 +00:00 [INF] Executed ViewResult - view Login executed in 56.6271ms. -2023-04-05 02:21:43.930 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 95.9244ms -2023-04-05 02:21:43.930 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:21:43.931 +00:00 [INF] HTTP GET /Account/Login responded 200 in 110.7923 ms -2023-04-05 02:21:43.933 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F%3Fquery%3Dselect%2B*%2Bfrom%2Blog%2Bwhere%2Btime%253E%253D%25272023-04-05T08%253A00%253A00.0000000Z%2527%2Band%2Btime%253C%253D%25272023-04-06T00%253A00%253A00.0000000Z%2527%2Border%2Bby%2Btime%2Bdesc%2Blimit%2B100%2Boffset%2B0%26applicationName%3D%26level%3D%26start%3D2023-04-05T08%253A00%26end%3D2023-04-06T00%253A00%253A00.000Z%26pageSize%3D10%26enalbeTail%3Dtrue - - - 200 - text/html;+charset=utf-8 113.3763ms -2023-04-05 02:21:43.959 +00:00 [INF] Uaq_uFCDkpSu3O0Kxz_RMA has disconnected: -2023-04-05 02:21:43.966 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:21:43.967 +00:00 [INF] HTTP GET /hub responded 101 in 17569.6467 ms -2023-04-05 02:21:43.967 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=MBXbS27S_wCA4E2etba0JQ - - - 101 - - 17570.3480ms -2023-04-05 02:21:45.528 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 600 -2023-04-05 02:21:45.530 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 02:21:45.531 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:21:45.537 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 02:21:45.545 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 02:21:45.545 +00:00 [INF] Executing LocalRedirectResult, redirecting to /?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true. -2023-04-05 02:21:45.546 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 8.8204ms -2023-04-05 02:21:45.546 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 02:21:45.546 +00:00 [INF] HTTP POST /Account/Login responded 302 in 17.9471 ms -2023-04-05 02:21:45.547 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 600 - 302 0 - 18.6757ms -2023-04-05 02:21:45.549 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - -2023-04-05 02:21:45.551 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:21:45.556 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:21:45.586 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 10 offset 0" -2023-04-05 02:21:45.587 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 10 offset 0" -2023-04-05 02:21:45.614 +00:00 [INF] Received HTTP response headers after 25.2219ms - 200 -2023-04-05 02:21:45.615 +00:00 [INF] End processing HTTP request after 30.5156ms - 200 -2023-04-05 02:21:45.623 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:21:45.623 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:21:45.625 +00:00 [INF] Received HTTP response headers after 1.0758ms - 200 -2023-04-05 02:21:45.625 +00:00 [INF] End processing HTTP request after 1.9011ms - 200 -2023-04-05 02:21:45.629 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 02:21:45.642 +00:00 [INF] Executed ViewResult - view Index executed in 13.1666ms. -2023-04-05 02:21:45.643 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 86.7731ms -2023-04-05 02:21:45.643 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:21:45.644 +00:00 [INF] HTTP GET / responded 200 in 95.0626 ms -2023-04-05 02:21:45.645 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - - 200 - text/html;+charset=utf-8 95.7039ms -2023-04-05 02:21:45.658 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:21:45.659 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:21:45.659 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:21:45.660 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.5164 ms -2023-04-05 02:21:45.660 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 2.3311ms -2023-04-05 02:21:45.671 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=41MXDHX94AFBJ-ENtMJ4cQ - - -2023-04-05 02:21:45.672 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:21:45.675 +00:00 [INF] gCdelFUJ-P_Nr-23jg9KnA has connected -2023-04-05 02:21:47.519 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+10+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - -2023-04-05 02:21:47.520 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:21:47.521 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:21:47.522 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 10 offset 0" -2023-04-05 02:21:47.522 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 10 offset 0" -2023-04-05 02:21:47.523 +00:00 [INF] Received HTTP response headers after 0.9029ms - 200 -2023-04-05 02:21:47.524 +00:00 [INF] End processing HTTP request after 2.1479ms - 200 -2023-04-05 02:21:47.525 +00:00 [INF] Start processing HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:21:47.525 +00:00 [INF] Sending HTTP request GET "http://influxdb:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 02:21:47.526 +00:00 [INF] Received HTTP response headers after 0.5548ms - 200 -2023-04-05 02:21:47.526 +00:00 [INF] End processing HTTP request after 1.3044ms - 200 -2023-04-05 02:21:47.527 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 02:21:47.528 +00:00 [INF] Executed ViewResult - view Index executed in 1.0841ms. -2023-04-05 02:21:47.528 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 6.8353ms -2023-04-05 02:21:47.528 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:21:47.528 +00:00 [INF] HTTP GET / responded 200 in 9.2887 ms -2023-04-05 02:21:47.529 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T08%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+10+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - - 200 - text/html;+charset=utf-8 10.1968ms -2023-04-05 02:21:47.540 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 02:21:47.541 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 02:21:47.541 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 02:21:47.542 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.1460 ms -2023-04-05 02:21:47.542 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 1.9399ms -2023-04-05 02:21:47.550 +00:00 [INF] gCdelFUJ-P_Nr-23jg9KnA has disconnected: -2023-04-05 02:21:47.551 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=uV-Mj5Z-xmvYWujwc1Qc6Q - - -2023-04-05 02:21:47.551 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 02:21:47.551 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 02:21:47.551 +00:00 [INF] HTTP GET /hub responded 101 in 1880.3279 ms -2023-04-05 02:21:47.552 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=41MXDHX94AFBJ-ENtMJ4cQ - - - 101 - - 1881.1424ms -2023-04-05 02:21:47.558 +00:00 [INF] 8o5hnUIW9YD2oFQA0WN3UQ has connected -2023-04-05 02:22:07.851 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 02:22:07.862 +00:00 [INF] Sending file. Request path: '/settings//appsettings.json'. Physical path: '/app/wwwroot/settings/appsettings.json' -2023-04-05 02:22:07.862 +00:00 [INF] HTTP GET /settings//appsettings.json responded 200 in 11.0450 ms -2023-04-05 02:22:07.863 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 200 5128 application/json 11.7327ms -2023-04-05 02:22:07.902 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 02:22:07.912 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 02:22:07.912 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 9.7100 ms -2023-04-05 02:22:07.913 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 10.6147ms -2023-04-05 02:22:07.933 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 02:22:07.940 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 02:22:07.941 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 7.0751 ms -2023-04-05 02:22:07.941 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 7.8458ms -2023-04-05 02:22:14.282 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 65409 -2023-04-05 02:22:14.283 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:14.285 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:14.531 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:14.532 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 246.2057ms -2023-04-05 02:22:14.532 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:14.532 +00:00 [INF] HTTP POST / responded 200 in 249.8940 ms -2023-04-05 02:22:14.534 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 65409 - 200 0 - 251.8741ms -2023-04-05 02:22:16.575 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 33481 -2023-04-05 02:22:16.575 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:16.576 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:16.606 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:16.607 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 30.2193ms -2023-04-05 02:22:16.607 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:16.607 +00:00 [INF] HTTP POST / responded 200 in 32.2660 ms -2023-04-05 02:22:16.608 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 33481 - 200 0 - 33.6616ms -2023-04-05 02:22:18.647 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 190446 -2023-04-05 02:22:18.647 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:18.648 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:18.690 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:18.691 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 42.5947ms -2023-04-05 02:22:18.691 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:18.691 +00:00 [INF] HTTP POST / responded 200 in 44.0540 ms -2023-04-05 02:22:18.693 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 190446 - 200 0 - 45.6602ms -2023-04-05 02:22:20.721 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 9129 -2023-04-05 02:22:20.722 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:20.722 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:20.751 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:20.752 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.0509ms -2023-04-05 02:22:20.752 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:20.752 +00:00 [INF] HTTP POST / responded 200 in 30.4814 ms -2023-04-05 02:22:20.753 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 9129 - 200 0 - 31.2416ms -2023-04-05 02:22:24.804 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 8426 -2023-04-05 02:22:24.804 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:24.805 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:24.832 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:24.833 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.676ms -2023-04-05 02:22:24.833 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:24.833 +00:00 [INF] HTTP POST / responded 200 in 29.0714 ms -2023-04-05 02:22:24.834 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 8426 - 200 0 - 29.8248ms -2023-04-05 02:22:26.864 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 32729 -2023-04-05 02:22:26.864 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:26.864 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:26.939 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:26.940 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 75.1755ms -2023-04-05 02:22:26.940 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:26.941 +00:00 [INF] HTTP POST / responded 200 in 76.5961 ms -2023-04-05 02:22:26.941 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 32729 - 200 0 - 77.8658ms -2023-04-05 02:22:28.968 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:28.968 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:28.969 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:28.995 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:28.996 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8919ms -2023-04-05 02:22:28.996 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:28.996 +00:00 [INF] HTTP POST / responded 200 in 28.2122 ms -2023-04-05 02:22:28.997 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9332ms -2023-04-05 02:22:35.039 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:35.040 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:35.040 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:35.067 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:35.068 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1845ms -2023-04-05 02:22:35.068 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:35.068 +00:00 [INF] HTTP POST / responded 200 in 28.8918 ms -2023-04-05 02:22:35.069 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.6922ms -2023-04-05 02:22:39.119 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:39.119 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:39.120 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:39.147 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:39.147 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2785ms -2023-04-05 02:22:39.148 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:39.148 +00:00 [INF] HTTP POST / responded 200 in 28.9238 ms -2023-04-05 02:22:39.148 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.6541ms -2023-04-05 02:22:45.195 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:45.195 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:45.196 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:45.223 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:45.223 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.3224ms -2023-04-05 02:22:45.224 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:45.224 +00:00 [INF] HTTP POST / responded 200 in 28.7199 ms -2023-04-05 02:22:45.224 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4634ms -2023-04-05 02:22:49.262 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:49.262 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:49.263 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:49.291 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:49.291 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.6071ms -2023-04-05 02:22:49.291 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:49.292 +00:00 [INF] HTTP POST / responded 200 in 29.5861 ms -2023-04-05 02:22:49.292 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.4202ms -2023-04-05 02:22:55.329 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:55.330 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:55.330 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:55.357 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:55.358 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1097ms -2023-04-05 02:22:55.358 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:55.359 +00:00 [INF] HTTP POST / responded 200 in 29.1330 ms -2023-04-05 02:22:55.360 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.7460ms -2023-04-05 02:22:59.401 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:22:59.401 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:59.402 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:22:59.428 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:22:59.429 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7363ms -2023-04-05 02:22:59.429 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:22:59.429 +00:00 [INF] HTTP POST / responded 200 in 28.0699 ms -2023-04-05 02:22:59.430 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8079ms -2023-04-05 02:23:03.473 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:03.474 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:03.475 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:03.502 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:03.504 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.1525ms -2023-04-05 02:23:03.505 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:03.506 +00:00 [INF] HTTP POST / responded 200 in 32.0917 ms -2023-04-05 02:23:03.507 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 34.2232ms -2023-04-05 02:23:05.536 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2768 -2023-04-05 02:23:05.537 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:05.537 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:05.564 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:05.564 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9644ms -2023-04-05 02:23:05.564 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:05.565 +00:00 [INF] HTTP POST / responded 200 in 28.2410 ms -2023-04-05 02:23:05.565 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2768 - 200 0 - 28.8941ms -2023-04-05 02:23:09.600 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:09.601 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:09.602 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:09.629 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:09.629 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2045ms -2023-04-05 02:23:09.630 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:09.630 +00:00 [INF] HTTP POST / responded 200 in 29.0439 ms -2023-04-05 02:23:09.630 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7627ms -2023-04-05 02:23:11.661 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2826 -2023-04-05 02:23:11.661 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:11.662 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:11.689 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:11.690 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.5111ms -2023-04-05 02:23:11.691 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:11.692 +00:00 [INF] HTTP POST / responded 200 in 30.2413 ms -2023-04-05 02:23:11.692 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2826 - 200 0 - 31.6437ms -2023-04-05 02:23:13.721 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 12045 -2023-04-05 02:23:13.721 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:13.722 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:13.808 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:13.809 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 86.9418ms -2023-04-05 02:23:13.809 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:13.810 +00:00 [INF] HTTP POST / responded 200 in 88.6469 ms -2023-04-05 02:23:13.810 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 12045 - 200 0 - 89.6711ms -2023-04-05 02:23:19.867 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:19.869 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:19.870 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:19.898 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:19.898 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.6425ms -2023-04-05 02:23:19.899 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:19.899 +00:00 [INF] HTTP POST / responded 200 in 31.1651 ms -2023-04-05 02:23:19.900 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 32.2444ms -2023-04-05 02:23:23.949 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:23.949 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:23.949 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:23.976 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:23.976 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5309ms -2023-04-05 02:23:23.976 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:23.977 +00:00 [INF] HTTP POST / responded 200 in 27.7115 ms -2023-04-05 02:23:23.977 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3384ms -2023-04-05 02:23:30.031 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:23:30.032 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:30.032 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:30.059 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:30.059 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6913ms -2023-04-05 02:23:30.059 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:30.060 +00:00 [INF] HTTP POST / responded 200 in 28.2602 ms -2023-04-05 02:23:30.060 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 29.0465ms -2023-04-05 02:23:34.104 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:34.105 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:34.105 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:34.133 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:34.133 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.3857ms -2023-04-05 02:23:34.134 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:34.134 +00:00 [INF] HTTP POST / responded 200 in 29.4126 ms -2023-04-05 02:23:34.134 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2134ms -2023-04-05 02:23:40.186 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:40.186 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:40.187 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:40.214 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:40.215 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2454ms -2023-04-05 02:23:40.215 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:40.215 +00:00 [INF] HTTP POST / responded 200 in 29.0600 ms -2023-04-05 02:23:40.217 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.5896ms -2023-04-05 02:23:44.246 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:44.247 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:44.248 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:44.275 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:44.275 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9796ms -2023-04-05 02:23:44.276 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:44.276 +00:00 [INF] HTTP POST / responded 200 in 29.6293 ms -2023-04-05 02:23:44.276 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.7609ms -2023-04-05 02:23:50.325 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:50.326 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:50.326 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:50.353 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:50.354 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9436ms -2023-04-05 02:23:50.354 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:50.354 +00:00 [INF] HTTP POST / responded 200 in 28.5728 ms -2023-04-05 02:23:50.355 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3467ms -2023-04-05 02:23:54.396 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:23:54.396 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:54.397 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:23:54.423 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:23:54.424 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7098ms -2023-04-05 02:23:54.424 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:23:54.424 +00:00 [INF] HTTP POST / responded 200 in 28.0367 ms -2023-04-05 02:23:54.425 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7461ms -2023-04-05 02:24:00.480 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:00.481 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:00.481 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:00.509 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:00.510 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.7793ms -2023-04-05 02:24:00.510 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:00.510 +00:00 [INF] HTTP POST / responded 200 in 29.2212 ms -2023-04-05 02:24:00.511 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.3407ms -2023-04-05 02:24:04.576 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:04.577 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:04.577 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:04.604 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:04.604 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9359ms -2023-04-05 02:24:04.604 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:04.605 +00:00 [INF] HTTP POST / responded 200 in 28.3867 ms -2023-04-05 02:24:04.606 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4496ms -2023-04-05 02:24:10.664 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:10.664 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:10.665 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:10.693 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:10.693 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.1574ms -2023-04-05 02:24:10.694 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:10.694 +00:00 [INF] HTTP POST / responded 200 in 29.9982 ms -2023-04-05 02:24:10.694 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.6808ms -2023-04-05 02:24:14.734 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:14.734 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:14.735 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:14.761 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:14.761 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4796ms -2023-04-05 02:24:14.762 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:14.762 +00:00 [INF] HTTP POST / responded 200 in 27.9038 ms -2023-04-05 02:24:14.762 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5844ms -2023-04-05 02:24:20.821 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:20.821 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:20.822 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:20.849 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:20.849 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6314ms -2023-04-05 02:24:20.849 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:20.849 +00:00 [INF] HTTP POST / responded 200 in 27.9371 ms -2023-04-05 02:24:20.850 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5661ms -2023-04-05 02:24:24.892 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:24.893 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:24.893 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:24.920 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:24.920 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8036ms -2023-04-05 02:24:24.920 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:24.921 +00:00 [INF] HTTP POST / responded 200 in 28.1843 ms -2023-04-05 02:24:24.921 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0403ms -2023-04-05 02:24:28.953 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:28.954 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:28.954 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:28.980 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:28.981 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4028ms -2023-04-05 02:24:28.981 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:28.981 +00:00 [INF] HTTP POST / responded 200 in 27.5228 ms -2023-04-05 02:24:28.981 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1652ms -2023-04-05 02:24:35.011 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:35.012 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:35.012 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:35.039 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:35.039 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.719ms -2023-04-05 02:24:35.039 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:35.039 +00:00 [INF] HTTP POST / responded 200 in 27.9593 ms -2023-04-05 02:24:35.040 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6784ms -2023-04-05 02:24:39.071 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:39.071 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:39.072 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:39.098 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:39.098 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4978ms -2023-04-05 02:24:39.099 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:39.099 +00:00 [INF] HTTP POST / responded 200 in 27.7490 ms -2023-04-05 02:24:39.099 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4122ms -2023-04-05 02:24:45.150 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:45.151 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:45.151 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:45.179 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:45.179 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.4923ms -2023-04-05 02:24:45.179 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:45.180 +00:00 [INF] HTTP POST / responded 200 in 29.0810 ms -2023-04-05 02:24:45.180 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8272ms -2023-04-05 02:24:49.213 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:49.213 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:49.214 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:49.240 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:49.241 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5095ms -2023-04-05 02:24:49.241 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:49.241 +00:00 [INF] HTTP POST / responded 200 in 27.7301 ms -2023-04-05 02:24:49.241 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3970ms -2023-04-05 02:24:55.273 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:24:55.273 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:55.273 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:55.300 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:55.300 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4719ms -2023-04-05 02:24:55.301 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:55.302 +00:00 [INF] HTTP POST / responded 200 in 29.0478 ms -2023-04-05 02:24:55.303 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.6348ms -2023-04-05 02:24:59.338 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:24:59.338 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:59.339 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:24:59.365 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:24:59.366 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5515ms -2023-04-05 02:24:59.366 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:24:59.366 +00:00 [INF] HTTP POST / responded 200 in 27.8963 ms -2023-04-05 02:24:59.367 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.5834ms -2023-04-05 02:25:05.422 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:05.422 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:05.423 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:05.450 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:05.450 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.883ms -2023-04-05 02:25:05.450 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:05.451 +00:00 [INF] HTTP POST / responded 200 in 28.3810 ms -2023-04-05 02:25:05.451 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4567ms -2023-04-05 02:25:09.486 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:09.486 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:09.487 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:09.513 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:09.513 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3006ms -2023-04-05 02:25:09.514 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:09.514 +00:00 [INF] HTTP POST / responded 200 in 27.6814 ms -2023-04-05 02:25:09.514 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3760ms -2023-04-05 02:25:15.569 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:15.570 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:15.570 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:15.597 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:15.597 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8118ms -2023-04-05 02:25:15.597 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:15.598 +00:00 [INF] HTTP POST / responded 200 in 28.0469 ms -2023-04-05 02:25:15.598 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9057ms -2023-04-05 02:25:19.643 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:19.643 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:19.644 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:19.671 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:19.671 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0625ms -2023-04-05 02:25:19.672 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:19.672 +00:00 [INF] HTTP POST / responded 200 in 28.6461 ms -2023-04-05 02:25:19.672 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.6053ms -2023-04-05 02:25:25.727 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:25.727 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:25.727 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:25.753 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:25.754 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.264ms -2023-04-05 02:25:25.754 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:25.755 +00:00 [INF] HTTP POST / responded 200 in 27.8932 ms -2023-04-05 02:25:25.756 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2121ms -2023-04-05 02:25:29.819 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:25:29.819 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:29.820 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:29.846 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:29.846 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4242ms -2023-04-05 02:25:29.847 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:29.847 +00:00 [INF] HTTP POST / responded 200 in 28.4101 ms -2023-04-05 02:25:29.849 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 30.0483ms -2023-04-05 02:25:35.909 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:35.910 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:35.910 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:35.937 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:35.937 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6425ms -2023-04-05 02:25:35.938 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:35.938 +00:00 [INF] HTTP POST / responded 200 in 28.2445 ms -2023-04-05 02:25:35.940 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.5195ms -2023-04-05 02:25:39.977 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:39.977 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:39.978 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:40.004 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:40.004 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4126ms -2023-04-05 02:25:40.005 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:40.005 +00:00 [INF] HTTP POST / responded 200 in 27.5967 ms -2023-04-05 02:25:40.005 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1899ms -2023-04-05 02:25:46.053 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:46.054 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:46.054 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:46.081 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:46.081 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5855ms -2023-04-05 02:25:46.082 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:46.082 +00:00 [INF] HTTP POST / responded 200 in 28.3715 ms -2023-04-05 02:25:46.084 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.4297ms -2023-04-05 02:25:50.131 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:25:50.131 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:50.131 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:50.158 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:50.158 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3363ms -2023-04-05 02:25:50.158 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:50.158 +00:00 [INF] HTTP POST / responded 200 in 27.4556 ms -2023-04-05 02:25:50.159 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.1612ms -2023-04-05 02:25:56.209 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:25:56.210 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:56.210 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:25:56.237 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:25:56.237 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6548ms -2023-04-05 02:25:56.237 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:25:56.238 +00:00 [INF] HTTP POST / responded 200 in 28.2293 ms -2023-04-05 02:25:56.239 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4789ms -2023-04-05 02:26:00.282 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:00.283 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:00.284 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:00.310 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:00.311 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7752ms -2023-04-05 02:26:00.311 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:00.312 +00:00 [INF] HTTP POST / responded 200 in 29.0322 ms -2023-04-05 02:26:00.313 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.6877ms -2023-04-05 02:26:06.368 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:26:06.369 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:06.369 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:06.396 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:06.396 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7563ms -2023-04-05 02:26:06.396 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:06.396 +00:00 [INF] HTTP POST / responded 200 in 27.7919 ms -2023-04-05 02:26:06.397 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.4320ms -2023-04-05 02:26:10.433 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:26:10.434 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:10.434 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:10.460 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:10.461 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3267ms -2023-04-05 02:26:10.461 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:10.461 +00:00 [INF] HTTP POST / responded 200 in 27.4613 ms -2023-04-05 02:26:10.461 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.1377ms -2023-04-05 02:26:16.531 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:16.532 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:16.532 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:16.558 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:16.559 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6916ms -2023-04-05 02:26:16.559 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:16.561 +00:00 [INF] HTTP POST / responded 200 in 29.1786 ms -2023-04-05 02:26:16.562 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.6557ms -2023-04-05 02:26:20.628 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:20.629 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:20.629 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:20.657 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:20.658 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.6088ms -2023-04-05 02:26:20.660 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:20.661 +00:00 [INF] HTTP POST / responded 200 in 32.1154 ms -2023-04-05 02:26:20.662 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 33.7787ms -2023-04-05 02:26:24.714 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:24.714 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:24.715 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:24.741 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:24.742 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4463ms -2023-04-05 02:26:24.742 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:24.742 +00:00 [INF] HTTP POST / responded 200 in 27.6585 ms -2023-04-05 02:26:24.742 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3352ms -2023-04-05 02:26:30.782 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:30.783 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:30.783 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:30.809 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:30.810 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6422ms -2023-04-05 02:26:30.810 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:30.810 +00:00 [INF] HTTP POST / responded 200 in 27.8692 ms -2023-04-05 02:26:30.811 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5698ms -2023-04-05 02:26:34.850 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:26:34.851 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:34.851 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:34.878 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:34.878 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.586ms -2023-04-05 02:26:34.878 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:34.879 +00:00 [INF] HTTP POST / responded 200 in 27.8919 ms -2023-04-05 02:26:34.879 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.6530ms -2023-04-05 02:26:40.934 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:26:40.934 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:40.935 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:40.961 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:40.962 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8801ms -2023-04-05 02:26:40.962 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:40.965 +00:00 [INF] HTTP POST / responded 200 in 30.9493 ms -2023-04-05 02:26:40.966 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 31.8664ms -2023-04-05 02:26:45.002 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:45.002 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:45.003 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:45.029 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:45.029 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3386ms -2023-04-05 02:26:45.030 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:45.030 +00:00 [INF] HTTP POST / responded 200 in 27.4623 ms -2023-04-05 02:26:45.030 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1799ms -2023-04-05 02:26:51.059 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:26:51.059 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:51.059 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:51.086 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:51.086 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.637ms -2023-04-05 02:26:51.087 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:51.087 +00:00 [INF] HTTP POST / responded 200 in 28.1251 ms -2023-04-05 02:26:51.087 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8064ms -2023-04-05 02:26:55.126 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:26:55.126 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:55.127 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:26:55.153 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:26:55.154 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6138ms -2023-04-05 02:26:55.154 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:26:55.154 +00:00 [INF] HTTP POST / responded 200 in 28.4100 ms -2023-04-05 02:26:55.155 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 29.2570ms -2023-04-05 02:27:01.198 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:01.198 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:01.199 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:01.225 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:01.226 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.698ms -2023-04-05 02:27:01.226 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:01.226 +00:00 [INF] HTTP POST / responded 200 in 27.9430 ms -2023-04-05 02:27:01.227 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7291ms -2023-04-05 02:27:05.254 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:05.254 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:05.255 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:05.281 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:05.282 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1562ms -2023-04-05 02:27:05.282 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:05.283 +00:00 [INF] HTTP POST / responded 200 in 28.3130 ms -2023-04-05 02:27:05.283 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1373ms -2023-04-05 02:27:11.324 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:11.324 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:11.324 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:11.351 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:11.351 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4549ms -2023-04-05 02:27:11.351 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:11.352 +00:00 [INF] HTTP POST / responded 200 in 27.6567 ms -2023-04-05 02:27:11.352 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3382ms -2023-04-05 02:27:15.389 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:15.389 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:15.390 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:15.416 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:15.417 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5267ms -2023-04-05 02:27:15.417 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:15.417 +00:00 [INF] HTTP POST / responded 200 in 27.9267 ms -2023-04-05 02:27:15.418 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7185ms -2023-04-05 02:27:21.462 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:21.462 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:21.462 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:21.489 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:21.489 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2577ms -2023-04-05 02:27:21.489 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:21.489 +00:00 [INF] HTTP POST / responded 200 in 27.3750 ms -2023-04-05 02:27:21.490 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1099ms -2023-04-05 02:27:25.520 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:27:25.520 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:25.520 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:25.546 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:25.547 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3345ms -2023-04-05 02:27:25.547 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:25.547 +00:00 [INF] HTTP POST / responded 200 in 27.5569 ms -2023-04-05 02:27:25.548 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2042ms -2023-04-05 02:27:31.614 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:31.615 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:31.615 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:31.642 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:31.642 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4016ms -2023-04-05 02:27:31.642 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:31.642 +00:00 [INF] HTTP POST / responded 200 in 27.9537 ms -2023-04-05 02:27:31.643 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0614ms -2023-04-05 02:27:35.693 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:27:35.694 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:35.694 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:35.722 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:35.722 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.5681ms -2023-04-05 02:27:35.723 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:35.723 +00:00 [INF] HTTP POST / responded 200 in 29.4093 ms -2023-04-05 02:27:35.724 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 30.6892ms -2023-04-05 02:27:41.766 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:41.766 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:41.766 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:41.793 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:41.793 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4715ms -2023-04-05 02:27:41.793 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:41.794 +00:00 [INF] HTTP POST / responded 200 in 27.7658 ms -2023-04-05 02:27:41.794 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5376ms -2023-04-05 02:27:45.844 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:45.845 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:45.845 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:45.872 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:45.874 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.0603ms -2023-04-05 02:27:45.875 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:45.876 +00:00 [INF] HTTP POST / responded 200 in 31.6499 ms -2023-04-05 02:27:45.878 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 33.2224ms -2023-04-05 02:27:51.945 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:51.945 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:51.946 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:51.972 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:51.972 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2793ms -2023-04-05 02:27:51.973 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:51.973 +00:00 [INF] HTTP POST / responded 200 in 27.7806 ms -2023-04-05 02:27:51.973 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5782ms -2023-04-05 02:27:56.021 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:27:56.022 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:56.022 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:27:56.048 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:27:56.049 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.537ms -2023-04-05 02:27:56.049 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:27:56.050 +00:00 [INF] HTTP POST / responded 200 in 27.8230 ms -2023-04-05 02:27:56.051 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3246ms -2023-04-05 02:28:02.120 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:28:02.120 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:02.120 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:28:02.146 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:28:02.147 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2706ms -2023-04-05 02:28:02.147 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:02.148 +00:00 [INF] HTTP POST / responded 200 in 27.6981 ms -2023-04-05 02:28:02.149 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2797ms -2023-04-05 02:28:06.208 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:28:06.209 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:06.209 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:28:06.237 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:28:06.238 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.739ms -2023-04-05 02:28:06.238 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:06.239 +00:00 [INF] HTTP POST / responded 200 in 30.1475 ms -2023-04-05 02:28:06.240 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.9610ms -2023-04-05 02:28:10.313 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:28:10.314 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:10.314 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:28:10.340 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:28:10.341 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3097ms -2023-04-05 02:28:10.341 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:10.341 +00:00 [INF] HTTP POST / responded 200 in 27.6805 ms -2023-04-05 02:28:10.342 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5992ms -2023-04-05 02:28:16.409 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:28:16.409 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:16.410 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:28:16.436 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:28:16.436 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4587ms -2023-04-05 02:28:16.437 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:28:16.437 +00:00 [INF] HTTP POST / responded 200 in 27.7485 ms -2023-04-05 02:28:16.437 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4265ms -2023-04-05 02:40:07.226 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 02:40:07.234 +00:00 [INF] Sending file. Request path: '/settings//appsettings.json'. Physical path: '/app/wwwroot/settings/appsettings.json' -2023-04-05 02:40:07.235 +00:00 [INF] HTTP GET /settings//appsettings.json responded 200 in 8.3263 ms -2023-04-05 02:40:07.235 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 200 5128 application/json 9.1919ms -2023-04-05 02:40:07.275 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 02:40:07.283 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 02:40:07.283 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 7.3463 ms -2023-04-05 02:40:07.283 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 8.0829ms -2023-04-05 02:40:07.307 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 02:40:07.314 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 02:40:07.314 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 7.0477 ms -2023-04-05 02:40:07.315 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 7.8804ms -2023-04-05 02:40:13.999 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 65409 -2023-04-05 02:40:13.999 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:14.000 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:14.030 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:14.030 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 30.1724ms -2023-04-05 02:40:14.030 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:14.031 +00:00 [INF] HTTP POST / responded 200 in 31.6142 ms -2023-04-05 02:40:14.031 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 65409 - 200 0 - 32.7988ms -2023-04-05 02:40:16.054 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 6685 -2023-04-05 02:40:16.055 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:16.055 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:16.082 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:16.083 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0247ms -2023-04-05 02:40:16.083 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:16.083 +00:00 [INF] HTTP POST / responded 200 in 28.3844 ms -2023-04-05 02:40:16.083 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 6685 - 200 0 - 29.2457ms -2023-04-05 02:40:18.130 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 158859 -2023-04-05 02:40:18.130 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:18.131 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:18.168 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:18.168 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 36.7726ms -2023-04-05 02:40:18.168 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:18.169 +00:00 [INF] HTTP POST / responded 200 in 38.5601 ms -2023-04-05 02:40:18.170 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 158859 - 200 0 - 40.5042ms -2023-04-05 02:40:20.195 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 67520 -2023-04-05 02:40:20.195 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:20.196 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:20.226 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:20.226 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 30.2302ms -2023-04-05 02:40:20.227 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:20.227 +00:00 [INF] HTTP POST / responded 200 in 32.0038 ms -2023-04-05 02:40:20.229 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 67520 - 200 0 - 34.0015ms -2023-04-05 02:40:24.267 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:24.267 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:24.268 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:24.294 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:24.295 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7514ms -2023-04-05 02:40:24.295 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:24.295 +00:00 [INF] HTTP POST / responded 200 in 28.2416 ms -2023-04-05 02:40:24.296 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0179ms -2023-04-05 02:40:26.347 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 38487 -2023-04-05 02:40:26.347 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:26.348 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:26.429 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:26.430 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 81.7158ms -2023-04-05 02:40:26.430 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:26.430 +00:00 [INF] HTTP POST / responded 200 in 83.2234 ms -2023-04-05 02:40:26.431 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 38487 - 200 0 - 84.3913ms -2023-04-05 02:40:28.479 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:28.479 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:28.479 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:28.506 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:28.506 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2565ms -2023-04-05 02:40:28.506 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:28.507 +00:00 [INF] HTTP POST / responded 200 in 27.6278 ms -2023-04-05 02:40:28.507 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4047ms -2023-04-05 02:40:34.586 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:34.587 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:34.588 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:34.616 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:34.617 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.8035ms -2023-04-05 02:40:34.617 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:34.617 +00:00 [INF] HTTP POST / responded 200 in 30.1281 ms -2023-04-05 02:40:34.618 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.3736ms -2023-04-05 02:40:38.655 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:38.656 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:38.656 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:38.684 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:38.684 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.3674ms -2023-04-05 02:40:38.684 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:38.685 +00:00 [INF] HTTP POST / responded 200 in 28.9681 ms -2023-04-05 02:40:38.685 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.9158ms -2023-04-05 02:40:44.731 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:44.731 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:44.732 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:44.759 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:44.760 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.7448ms -2023-04-05 02:40:44.760 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:44.760 +00:00 [INF] HTTP POST / responded 200 in 29.0773 ms -2023-04-05 02:40:44.761 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.9362ms -2023-04-05 02:40:48.805 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:48.806 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:48.806 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:48.833 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:48.833 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8054ms -2023-04-05 02:40:48.834 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:48.835 +00:00 [INF] HTTP POST / responded 200 in 29.0585 ms -2023-04-05 02:40:48.835 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8475ms -2023-04-05 02:40:54.888 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:54.889 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:54.889 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:54.915 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:54.916 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.462ms -2023-04-05 02:40:54.916 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:54.916 +00:00 [INF] HTTP POST / responded 200 in 27.6272 ms -2023-04-05 02:40:54.917 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2924ms -2023-04-05 02:40:58.952 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:40:58.952 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:58.952 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:40:58.978 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:40:58.979 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2575ms -2023-04-05 02:40:58.979 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:40:58.979 +00:00 [INF] HTTP POST / responded 200 in 27.3042 ms -2023-04-05 02:40:58.980 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9265ms -2023-04-05 02:41:05.013 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:05.013 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:05.014 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:05.040 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:05.040 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4396ms -2023-04-05 02:41:05.041 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:05.041 +00:00 [INF] HTTP POST / responded 200 in 27.6169 ms -2023-04-05 02:41:05.041 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2744ms -2023-04-05 02:41:09.078 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:41:09.078 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:09.078 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:09.105 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:09.105 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4537ms -2023-04-05 02:41:09.105 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:09.106 +00:00 [INF] HTTP POST / responded 200 in 27.6270 ms -2023-04-05 02:41:09.106 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2972ms -2023-04-05 02:41:13.134 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:13.134 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:13.135 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:13.162 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:13.162 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.85ms -2023-04-05 02:41:13.162 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:13.162 +00:00 [INF] HTTP POST / responded 200 in 28.4093 ms -2023-04-05 02:41:13.163 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0583ms -2023-04-05 02:41:19.230 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:41:19.231 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:19.231 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:19.259 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:19.260 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.5171ms -2023-04-05 02:41:19.261 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:19.262 +00:00 [INF] HTTP POST / responded 200 in 31.5296 ms -2023-04-05 02:41:19.264 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 33.6999ms -2023-04-05 02:41:23.316 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:23.316 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:23.317 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:23.343 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:23.343 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6385ms -2023-04-05 02:41:23.344 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:23.344 +00:00 [INF] HTTP POST / responded 200 in 27.7651 ms -2023-04-05 02:41:23.344 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5050ms -2023-04-05 02:41:29.421 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:29.421 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:29.422 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:29.448 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:29.449 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8367ms -2023-04-05 02:41:29.449 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:29.450 +00:00 [INF] HTTP POST / responded 200 in 28.5098 ms -2023-04-05 02:41:29.450 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4297ms -2023-04-05 02:41:33.521 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:33.521 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:33.522 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:33.548 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:33.549 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6565ms -2023-04-05 02:41:33.549 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:33.550 +00:00 [INF] HTTP POST / responded 200 in 28.2487 ms -2023-04-05 02:41:33.550 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1835ms -2023-04-05 02:41:39.593 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:41:39.593 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:39.594 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:39.620 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:39.621 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6732ms -2023-04-05 02:41:39.621 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:39.621 +00:00 [INF] HTTP POST / responded 200 in 27.9261 ms -2023-04-05 02:41:39.621 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.6350ms -2023-04-05 02:41:43.676 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:43.676 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:43.676 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:43.703 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:43.703 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6258ms -2023-04-05 02:41:43.704 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:43.704 +00:00 [INF] HTTP POST / responded 200 in 28.0131 ms -2023-04-05 02:41:43.705 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3450ms -2023-04-05 02:41:49.801 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:41:49.802 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:49.803 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:49.829 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:49.830 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2483ms -2023-04-05 02:41:49.831 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:49.832 +00:00 [INF] HTTP POST / responded 200 in 29.6238 ms -2023-04-05 02:41:49.832 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 30.9035ms -2023-04-05 02:41:53.878 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:53.878 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:53.879 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:53.905 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:53.905 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5763ms -2023-04-05 02:41:53.906 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:53.906 +00:00 [INF] HTTP POST / responded 200 in 27.8114 ms -2023-04-05 02:41:53.906 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5960ms -2023-04-05 02:41:59.962 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:41:59.963 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:59.963 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:41:59.990 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:41:59.991 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9623ms -2023-04-05 02:41:59.991 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:41:59.992 +00:00 [INF] HTTP POST / responded 200 in 28.8596 ms -2023-04-05 02:41:59.992 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8929ms -2023-04-05 02:42:04.038 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:42:04.038 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:04.039 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:04.065 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:04.065 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4018ms -2023-04-05 02:42:04.066 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:04.066 +00:00 [INF] HTTP POST / responded 200 in 27.8890 ms -2023-04-05 02:42:04.067 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.7538ms -2023-04-05 02:42:10.126 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:10.126 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:10.126 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:10.152 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:10.153 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2864ms -2023-04-05 02:42:10.153 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:10.153 +00:00 [INF] HTTP POST / responded 200 in 27.4413 ms -2023-04-05 02:42:10.154 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0743ms -2023-04-05 02:42:14.214 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:14.215 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:14.216 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:14.243 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:14.244 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1214ms -2023-04-05 02:42:14.244 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:14.244 +00:00 [INF] HTTP POST / responded 200 in 28.9479 ms -2023-04-05 02:42:14.244 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.3418ms -2023-04-05 02:42:20.314 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:20.315 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:20.315 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:20.345 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:20.345 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.146ms -2023-04-05 02:42:20.346 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:20.347 +00:00 [INF] HTTP POST / responded 200 in 32.3415 ms -2023-04-05 02:42:20.348 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 34.0583ms -2023-04-05 02:42:24.411 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:42:24.412 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:24.412 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:24.439 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:24.439 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8987ms -2023-04-05 02:42:24.440 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:24.440 +00:00 [INF] HTTP POST / responded 200 in 28.8974 ms -2023-04-05 02:42:24.441 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 30.3556ms -2023-04-05 02:42:30.486 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:30.487 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:30.487 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:30.514 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:30.515 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.3123ms -2023-04-05 02:42:30.515 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:30.515 +00:00 [INF] HTTP POST / responded 200 in 28.9612 ms -2023-04-05 02:42:30.516 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8619ms -2023-04-05 02:42:34.563 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:42:34.564 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:34.564 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:34.592 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:34.593 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.198ms -2023-04-05 02:42:34.593 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:34.594 +00:00 [INF] HTTP POST / responded 200 in 30.0573 ms -2023-04-05 02:42:34.594 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 31.1816ms -2023-04-05 02:42:38.635 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:42:38.636 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:38.636 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:38.663 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:38.663 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7334ms -2023-04-05 02:42:38.664 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:38.664 +00:00 [INF] HTTP POST / responded 200 in 28.5548 ms -2023-04-05 02:42:38.665 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 29.6110ms -2023-04-05 02:42:44.716 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:42:44.717 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:44.717 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:44.743 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:44.744 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1087ms -2023-04-05 02:42:44.745 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:44.746 +00:00 [INF] HTTP POST / responded 200 in 29.7294 ms -2023-04-05 02:42:44.747 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 31.1939ms -2023-04-05 02:42:48.785 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:48.785 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:48.785 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:48.812 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:48.812 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5546ms -2023-04-05 02:42:48.812 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:48.813 +00:00 [INF] HTTP POST / responded 200 in 27.7844 ms -2023-04-05 02:42:48.813 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5603ms -2023-04-05 02:42:54.873 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:54.874 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:54.874 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:54.902 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:54.903 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.2879ms -2023-04-05 02:42:54.904 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:54.905 +00:00 [INF] HTTP POST / responded 200 in 30.9901 ms -2023-04-05 02:42:54.906 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 32.3336ms -2023-04-05 02:42:58.940 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:42:58.941 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:58.941 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:42:58.967 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:42:58.968 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5759ms -2023-04-05 02:42:58.968 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:42:58.969 +00:00 [INF] HTTP POST / responded 200 in 28.0543 ms -2023-04-05 02:42:58.969 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7169ms -2023-04-05 02:43:05.035 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:05.035 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:05.036 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:05.062 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:05.062 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2541ms -2023-04-05 02:43:05.062 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:05.063 +00:00 [INF] HTTP POST / responded 200 in 27.3695 ms -2023-04-05 02:43:05.063 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9642ms -2023-04-05 02:43:09.112 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:09.113 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:09.113 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:09.140 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:09.140 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6362ms -2023-04-05 02:43:09.140 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:09.141 +00:00 [INF] HTTP POST / responded 200 in 27.8800 ms -2023-04-05 02:43:09.141 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5609ms -2023-04-05 02:43:15.190 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:15.191 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:15.191 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:15.218 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:15.219 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9027ms -2023-04-05 02:43:15.219 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:15.219 +00:00 [INF] HTTP POST / responded 200 in 28.2313 ms -2023-04-05 02:43:15.220 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1732ms -2023-04-05 02:43:19.258 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:19.259 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:19.260 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:19.287 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:19.287 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9742ms -2023-04-05 02:43:19.287 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:19.288 +00:00 [INF] HTTP POST / responded 200 in 28.7558 ms -2023-04-05 02:43:19.288 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.6021ms -2023-04-05 02:43:25.337 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:25.338 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:25.339 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:25.368 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:25.368 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.3467ms -2023-04-05 02:43:25.369 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:25.369 +00:00 [INF] HTTP POST / responded 200 in 30.7372 ms -2023-04-05 02:43:25.369 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.9626ms -2023-04-05 02:43:29.433 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:29.434 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:29.435 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:29.463 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:29.464 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.0494ms -2023-04-05 02:43:29.464 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:29.464 +00:00 [INF] HTTP POST / responded 200 in 30.6133 ms -2023-04-05 02:43:29.464 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.7808ms -2023-04-05 02:43:35.510 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:35.510 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:35.510 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:35.537 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:35.537 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4051ms -2023-04-05 02:43:35.537 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:35.538 +00:00 [INF] HTTP POST / responded 200 in 27.5708 ms -2023-04-05 02:43:35.538 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3338ms -2023-04-05 02:43:39.567 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:43:39.567 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:39.568 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:39.595 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:39.595 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1053ms -2023-04-05 02:43:39.596 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:39.596 +00:00 [INF] HTTP POST / responded 200 in 29.0431 ms -2023-04-05 02:43:39.598 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 30.7098ms -2023-04-05 02:43:45.649 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:45.649 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:45.650 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:45.676 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:45.676 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6567ms -2023-04-05 02:43:45.677 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:45.677 +00:00 [INF] HTTP POST / responded 200 in 27.8767 ms -2023-04-05 02:43:45.677 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5785ms -2023-04-05 02:43:49.713 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:49.714 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:49.714 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:49.741 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:49.741 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8516ms -2023-04-05 02:43:49.742 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:49.743 +00:00 [INF] HTTP POST / responded 200 in 28.8802 ms -2023-04-05 02:43:49.744 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2474ms -2023-04-05 02:43:55.789 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:55.789 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:55.789 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:55.816 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:55.816 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3878ms -2023-04-05 02:43:55.817 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:55.817 +00:00 [INF] HTTP POST / responded 200 in 27.9139 ms -2023-04-05 02:43:55.817 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6337ms -2023-04-05 02:43:59.868 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:43:59.869 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:59.870 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:43:59.898 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:43:59.898 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.6774ms -2023-04-05 02:43:59.898 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:43:59.899 +00:00 [INF] HTTP POST / responded 200 in 29.8434 ms -2023-04-05 02:43:59.899 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.5726ms -2023-04-05 02:44:05.980 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:05.980 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:05.980 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:06.007 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:06.007 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8283ms -2023-04-05 02:44:06.008 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:06.008 +00:00 [INF] HTTP POST / responded 200 in 28.0217 ms -2023-04-05 02:44:06.008 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7728ms -2023-04-05 02:44:10.043 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:10.043 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:10.043 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:10.070 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:10.070 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5832ms -2023-04-05 02:44:10.071 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:10.071 +00:00 [INF] HTTP POST / responded 200 in 27.7677 ms -2023-04-05 02:44:10.071 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3973ms -2023-04-05 02:44:14.109 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:14.109 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:14.110 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:14.136 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:14.136 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4642ms -2023-04-05 02:44:14.137 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:14.137 +00:00 [INF] HTTP POST / responded 200 in 27.6632 ms -2023-04-05 02:44:14.137 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3986ms -2023-04-05 02:44:20.197 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:20.199 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:20.201 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:20.231 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:20.231 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.3116ms -2023-04-05 02:44:20.231 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:20.232 +00:00 [INF] HTTP POST / responded 200 in 32.8958 ms -2023-04-05 02:44:20.232 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 34.6197ms -2023-04-05 02:44:24.269 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:44:24.270 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:24.270 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:24.296 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:24.296 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.311ms -2023-04-05 02:44:24.297 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:24.297 +00:00 [INF] HTTP POST / responded 200 in 27.4823 ms -2023-04-05 02:44:24.297 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.0865ms -2023-04-05 02:44:30.356 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:30.356 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:30.357 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:30.384 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:30.384 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9635ms -2023-04-05 02:44:30.385 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:30.385 +00:00 [INF] HTTP POST / responded 200 in 28.6155 ms -2023-04-05 02:44:30.385 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4808ms -2023-04-05 02:44:34.418 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:34.419 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:34.419 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:34.445 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:34.446 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7654ms -2023-04-05 02:44:34.447 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:34.447 +00:00 [INF] HTTP POST / responded 200 in 28.6557 ms -2023-04-05 02:44:34.448 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8213ms -2023-04-05 02:44:40.498 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:40.499 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:40.499 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:40.525 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:40.526 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4416ms -2023-04-05 02:44:40.526 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:40.526 +00:00 [INF] HTTP POST / responded 200 in 27.5364 ms -2023-04-05 02:44:40.526 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1441ms -2023-04-05 02:44:44.576 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:44:44.577 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:44.577 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:44.604 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:44.605 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9476ms -2023-04-05 02:44:44.606 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:44.607 +00:00 [INF] HTTP POST / responded 200 in 30.0125 ms -2023-04-05 02:44:44.608 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 31.4747ms -2023-04-05 02:44:50.658 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:50.658 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:50.658 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:50.685 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:50.685 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3847ms -2023-04-05 02:44:50.685 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:50.685 +00:00 [INF] HTTP POST / responded 200 in 27.4345 ms -2023-04-05 02:44:50.686 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0316ms -2023-04-05 02:44:54.718 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:44:54.718 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:54.719 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:44:54.745 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:44:54.745 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2544ms -2023-04-05 02:44:54.746 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:44:54.746 +00:00 [INF] HTTP POST / responded 200 in 27.3094 ms -2023-04-05 02:44:54.746 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9737ms -2023-04-05 02:45:00.795 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:00.795 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:00.796 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:00.822 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:00.822 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5064ms -2023-04-05 02:45:00.823 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:00.823 +00:00 [INF] HTTP POST / responded 200 in 28.1710 ms -2023-04-05 02:45:00.824 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0359ms -2023-04-05 02:45:04.882 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:04.882 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:04.883 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:04.909 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:04.910 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9478ms -2023-04-05 02:45:04.911 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:04.911 +00:00 [INF] HTTP POST / responded 200 in 29.2051 ms -2023-04-05 02:45:04.912 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.6011ms -2023-04-05 02:45:10.964 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:10.965 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:10.965 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:10.992 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:10.992 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8271ms -2023-04-05 02:45:10.992 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:10.993 +00:00 [INF] HTTP POST / responded 200 in 28.1316 ms -2023-04-05 02:45:10.993 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7940ms -2023-04-05 02:45:15.034 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:15.035 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:15.035 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:15.061 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:15.062 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3939ms -2023-04-05 02:45:15.062 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:15.062 +00:00 [INF] HTTP POST / responded 200 in 27.6300 ms -2023-04-05 02:45:15.063 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3589ms -2023-04-05 02:45:21.098 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 02:45:21.099 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:21.100 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:21.126 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:21.127 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8633ms -2023-04-05 02:45:21.127 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:21.127 +00:00 [INF] HTTP POST / responded 200 in 28.5981 ms -2023-04-05 02:45:21.128 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 29.9642ms -2023-04-05 02:45:25.165 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:25.166 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:25.166 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:25.192 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:25.193 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7262ms -2023-04-05 02:45:25.193 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:25.193 +00:00 [INF] HTTP POST / responded 200 in 27.9252 ms -2023-04-05 02:45:25.194 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6150ms -2023-04-05 02:45:31.278 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:31.279 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:31.279 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:31.308 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:31.309 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.9116ms -2023-04-05 02:45:31.309 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:31.310 +00:00 [INF] HTTP POST / responded 200 in 31.6796 ms -2023-04-05 02:45:31.311 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 33.3206ms -2023-04-05 02:45:35.357 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:35.357 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:35.358 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:35.384 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:35.385 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5503ms -2023-04-05 02:45:35.385 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:35.385 +00:00 [INF] HTTP POST / responded 200 in 27.8866 ms -2023-04-05 02:45:35.385 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6496ms -2023-04-05 02:45:41.462 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:41.463 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:41.464 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:41.492 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:41.492 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.5113ms -2023-04-05 02:45:41.493 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:41.493 +00:00 [INF] HTTP POST / responded 200 in 29.9627 ms -2023-04-05 02:45:41.494 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.2094ms -2023-04-05 02:45:45.544 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:45.545 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:45.545 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:45.571 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:45.572 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3172ms -2023-04-05 02:45:45.573 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:45.573 +00:00 [INF] HTTP POST / responded 200 in 28.6250 ms -2023-04-05 02:45:45.574 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.9103ms -2023-04-05 02:45:49.625 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 954 -2023-04-05 02:45:49.626 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:49.626 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:49.652 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:49.652 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2511ms -2023-04-05 02:45:49.653 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:49.653 +00:00 [INF] HTTP POST / responded 200 in 27.4134 ms -2023-04-05 02:45:49.653 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 954 - 200 0 - 28.1075ms -2023-04-05 02:45:51.688 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 1713 -2023-04-05 02:45:51.688 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:51.689 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:51.715 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:51.715 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2845ms -2023-04-05 02:45:51.716 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:51.716 +00:00 [INF] HTTP POST / responded 200 in 27.6177 ms -2023-04-05 02:45:51.716 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 1713 - 200 0 - 28.4024ms -2023-04-05 02:45:55.753 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:55.754 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:55.754 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:55.782 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:55.783 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.9765ms -2023-04-05 02:45:55.783 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:55.783 +00:00 [INF] HTTP POST / responded 200 in 29.4240 ms -2023-04-05 02:45:55.784 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.0145ms -2023-04-05 02:45:59.820 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:45:59.820 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:59.821 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:45:59.847 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:45:59.847 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5332ms -2023-04-05 02:45:59.848 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:45:59.848 +00:00 [INF] HTTP POST / responded 200 in 27.7446 ms -2023-04-05 02:45:59.848 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4811ms -2023-04-05 02:46:05.913 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:05.914 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:05.914 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:05.940 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:05.941 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8616ms -2023-04-05 02:46:05.942 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:05.942 +00:00 [INF] HTTP POST / responded 200 in 28.5613 ms -2023-04-05 02:46:05.942 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3321ms -2023-04-05 02:46:09.985 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:09.985 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:09.986 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:10.013 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:10.013 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8625ms -2023-04-05 02:46:10.014 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:10.014 +00:00 [INF] HTTP POST / responded 200 in 28.7846 ms -2023-04-05 02:46:10.014 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8993ms -2023-04-05 02:46:16.079 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:16.080 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:16.081 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:16.108 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:16.109 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.5027ms -2023-04-05 02:46:16.110 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:16.111 +00:00 [INF] HTTP POST / responded 200 in 31.3032 ms -2023-04-05 02:46:16.112 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 33.1857ms -2023-04-05 02:46:20.149 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:20.149 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:20.149 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:20.176 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:20.176 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5655ms -2023-04-05 02:46:20.176 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:20.177 +00:00 [INF] HTTP POST / responded 200 in 27.6927 ms -2023-04-05 02:46:20.177 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3157ms -2023-04-05 02:46:26.218 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:26.219 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:26.219 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:26.245 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:26.245 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2182ms -2023-04-05 02:46:26.245 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:26.246 +00:00 [INF] HTTP POST / responded 200 in 27.2331 ms -2023-04-05 02:46:26.246 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9099ms -2023-04-05 02:46:30.280 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:30.280 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:30.281 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:30.307 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:30.308 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6309ms -2023-04-05 02:46:30.308 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:30.309 +00:00 [INF] HTTP POST / responded 200 in 28.1756 ms -2023-04-05 02:46:30.309 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9676ms -2023-04-05 02:46:36.382 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:36.382 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:36.382 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:36.409 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:36.409 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4687ms -2023-04-05 02:46:36.409 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:36.410 +00:00 [INF] HTTP POST / responded 200 in 27.7626 ms -2023-04-05 02:46:36.410 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5572ms -2023-04-05 02:46:40.453 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:40.453 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:40.454 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:40.480 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:40.480 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4173ms -2023-04-05 02:46:40.481 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:40.481 +00:00 [INF] HTTP POST / responded 200 in 27.5600 ms -2023-04-05 02:46:40.481 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1923ms -2023-04-05 02:46:46.540 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:46.541 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:46.541 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:46.567 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:46.567 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.27ms -2023-04-05 02:46:46.568 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:46.568 +00:00 [INF] HTTP POST / responded 200 in 27.4710 ms -2023-04-05 02:46:46.568 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3132ms -2023-04-05 02:46:50.600 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:50.601 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:50.601 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:50.627 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:50.628 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4241ms -2023-04-05 02:46:50.628 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:50.628 +00:00 [INF] HTTP POST / responded 200 in 27.5793 ms -2023-04-05 02:46:50.629 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3771ms -2023-04-05 02:46:56.684 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:46:56.685 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:56.686 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:46:56.714 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:46:56.715 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.2382ms -2023-04-05 02:46:56.716 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:46:56.717 +00:00 [INF] HTTP POST / responded 200 in 31.5303 ms -2023-04-05 02:46:56.718 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 33.7726ms -2023-04-05 02:47:00.781 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:00.781 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:00.781 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:00.808 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:00.808 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5148ms -2023-04-05 02:47:00.808 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:00.809 +00:00 [INF] HTTP POST / responded 200 in 27.7066 ms -2023-04-05 02:47:00.809 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3041ms -2023-04-05 02:47:06.890 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:06.891 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:06.891 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:06.918 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:06.918 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8436ms -2023-04-05 02:47:06.919 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:06.919 +00:00 [INF] HTTP POST / responded 200 in 28.2918 ms -2023-04-05 02:47:06.919 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0787ms -2023-04-05 02:47:10.980 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:10.980 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:10.981 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:11.007 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:11.007 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4313ms -2023-04-05 02:47:11.008 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:11.008 +00:00 [INF] HTTP POST / responded 200 in 27.6053 ms -2023-04-05 02:47:11.008 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3684ms -2023-04-05 02:47:17.071 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:17.072 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:17.073 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:17.102 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:17.102 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.191ms -2023-04-05 02:47:17.103 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:17.104 +00:00 [INF] HTTP POST / responded 200 in 32.3530 ms -2023-04-05 02:47:17.105 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 34.6686ms -2023-04-05 02:47:21.160 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:21.160 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:21.161 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:21.187 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:21.188 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5243ms -2023-04-05 02:47:21.188 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:21.188 +00:00 [INF] HTTP POST / responded 200 in 27.7347 ms -2023-04-05 02:47:21.188 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4149ms -2023-04-05 02:47:25.238 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:25.239 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:25.239 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:25.266 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:25.266 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5438ms -2023-04-05 02:47:25.266 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:25.267 +00:00 [INF] HTTP POST / responded 200 in 28.2071 ms -2023-04-05 02:47:25.268 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2386ms -2023-04-05 02:47:31.339 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:31.340 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:31.341 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:31.369 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:31.369 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.2538ms -2023-04-05 02:47:31.370 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:31.370 +00:00 [INF] HTTP POST / responded 200 in 30.3429 ms -2023-04-05 02:47:31.371 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.7771ms -2023-04-05 02:47:35.429 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:35.430 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:35.430 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:35.456 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:35.457 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3915ms -2023-04-05 02:47:35.457 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:35.458 +00:00 [INF] HTTP POST / responded 200 in 28.1774 ms -2023-04-05 02:47:35.459 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3876ms -2023-04-05 02:47:41.510 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:41.510 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:41.510 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:41.536 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:41.537 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3572ms -2023-04-05 02:47:41.537 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:41.537 +00:00 [INF] HTTP POST / responded 200 in 27.5439 ms -2023-04-05 02:47:41.538 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4664ms -2023-04-05 02:47:45.577 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:45.577 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:45.577 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:45.604 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:45.604 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3833ms -2023-04-05 02:47:45.604 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:45.604 +00:00 [INF] HTTP POST / responded 200 in 27.4778 ms -2023-04-05 02:47:45.605 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1598ms -2023-04-05 02:47:51.667 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:51.667 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:51.667 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:51.694 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:51.695 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.4382ms -2023-04-05 02:47:51.696 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:51.697 +00:00 [INF] HTTP POST / responded 200 in 30.2972 ms -2023-04-05 02:47:51.699 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.9611ms -2023-04-05 02:47:55.735 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:47:55.735 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:55.735 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:47:55.761 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:47:55.762 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1875ms -2023-04-05 02:47:55.762 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:47:55.762 +00:00 [INF] HTTP POST / responded 200 in 27.2374 ms -2023-04-05 02:47:55.763 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9769ms -2023-04-05 02:48:01.832 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 02:48:01.832 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:48:01.833 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 02:48:01.859 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 02:48:01.860 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3222ms -2023-04-05 02:48:01.860 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 02:48:01.860 +00:00 [INF] HTTP POST / responded 200 in 27.7038 ms -2023-04-05 02:48:01.860 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3060ms -2023-04-05 03:01:05.857 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 03:01:05.899 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 03:01:05.917 +00:00 [INF] Loading proxy data from config. -2023-04-05 03:01:06.031 +00:00 [INF] Creating key {58266d51-f5de-4932-9a8b-cb83610477a0} with creation date 2023-04-05 03:01:06Z, activation date 2023-04-05 03:01:06Z, and expiration date 2023-07-04 03:01:06Z. -2023-04-05 03:01:06.040 +00:00 [WRN] No XML encryptor configured. Key {58266d51-f5de-4932-9a8b-cb83610477a0} may be persisted to storage in unencrypted form. -2023-04-05 03:01:06.043 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-58266d51-f5de-4932-9a8b-cb83610477a0.xml'. -2023-04-05 03:01:06.069 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 03:01:06.071 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 03:01:06.072 +00:00 [INF] Hosting environment: Production -2023-04-05 03:01:06.072 +00:00 [INF] Content root path: /app/ -2023-04-05 03:01:11.325 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:01:11.325 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:01:11.361 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:01:11.361 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:01:11.363 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:01:11.363 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:01:11.374 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:01:11.374 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:01:11.376 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 47.3074 ms -2023-04-05 03:01:11.376 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 47.2531 ms -2023-04-05 03:01:11.379 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 56.3801ms -2023-04-05 03:01:11.379 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 56.3691ms -2023-04-05 03:01:11.382 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=b6m1USI85G56oTLgUZHgIg - - -2023-04-05 03:01:11.385 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:01:11.386 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:01:11.402 +00:00 [INF] go-EK4qPnJ3q-PdGlrMW7Q has connected -2023-04-05 03:01:11.406 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=uYqPuYFwYCRMb8P4Mz9sNA - - -2023-04-05 03:01:11.407 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:01:11.408 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:01:11.412 +00:00 [INF] EOMXtDYcQksQaZyNtDmk_w has connected -2023-04-05 03:01:14.631 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 03:01:14.634 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 03:01:14.636 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 03:01:14.637 +00:00 [INF] HTTP GET / responded 302 in 5.4424 ms -2023-04-05 03:01:14.637 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 302 0 - 6.3376ms -2023-04-05 03:01:14.644 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - -2023-04-05 03:01:14.645 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:01:14.659 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 03:01:14.701 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 03:01:14.750 +00:00 [INF] Executed ViewResult - view Login executed in 48.4639ms. -2023-04-05 03:01:14.751 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 91.6038ms -2023-04-05 03:01:14.751 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:01:14.752 +00:00 [INF] HTTP GET /Account/Login responded 200 in 106.7923 ms -2023-04-05 03:01:14.753 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - - 200 - text/html;+charset=utf-8 108.8972ms -2023-04-05 03:01:21.000 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 -2023-04-05 03:01:21.001 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:01:21.008 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 03:01:21.020 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 03:01:21.021 +00:00 [INF] Executing LocalRedirectResult, redirecting to /. -2023-04-05 03:01:21.022 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 12.5228ms -2023-04-05 03:01:21.022 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:01:21.022 +00:00 [INF] HTTP POST /Account/Login responded 302 in 21.6221 ms -2023-04-05 03:01:21.022 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 - 302 0 - 22.2960ms -2023-04-05 03:01:21.027 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 03:01:21.029 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:01:21.036 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:01:21.059 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 03:01:21.060 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 03:01:21.093 +00:00 [INF] Received HTTP response headers after 29.7353ms - 200 -2023-04-05 03:01:21.093 +00:00 [INF] End processing HTTP request after 35.0357ms - 200 -2023-04-05 03:01:21.119 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 03:01:21.119 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 03:01:21.122 +00:00 [INF] Received HTTP response headers after 2.1866ms - 200 -2023-04-05 03:01:21.122 +00:00 [INF] End processing HTTP request after 3.088ms - 200 -2023-04-05 03:01:21.124 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 03:01:21.146 +00:00 [INF] Executed ViewResult - view Index executed in 22.4634ms. -2023-04-05 03:01:21.147 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 110.7926ms -2023-04-05 03:01:21.147 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:01:21.148 +00:00 [INF] HTTP GET / responded 200 in 120.3372 ms -2023-04-05 03:01:21.148 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 200 - text/html;+charset=utf-8 120.9902ms -2023-04-05 03:01:21.194 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:01:21.194 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:01:21.195 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:01:21.195 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.0773 ms -2023-04-05 03:01:21.195 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 1.6564ms -2023-04-05 03:01:21.249 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=fjuPnw8LW6UDM_CkxD1x5Q - - -2023-04-05 03:01:21.249 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:01:21.252 +00:00 [INF] 2nTWJrViKS85SKR0faIXTA has connected -2023-04-05 03:01:28.979 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T00%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - -2023-04-05 03:01:28.980 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:01:28.981 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:01:28.991 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 10 offset 0" -2023-04-05 03:01:28.992 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 10 offset 0" -2023-04-05 03:01:28.994 +00:00 [INF] Received HTTP response headers after 2.2004ms - 200 -2023-04-05 03:01:28.994 +00:00 [INF] End processing HTTP request after 3.1925ms - 200 -2023-04-05 03:01:28.999 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 03:01:28.999 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 03:01:29.001 +00:00 [INF] Received HTTP response headers after 1.5838ms - 200 -2023-04-05 03:01:29.002 +00:00 [INF] End processing HTTP request after 2.3447ms - 200 -2023-04-05 03:01:29.002 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 03:01:29.003 +00:00 [INF] Executed ViewResult - view Index executed in 0.8783ms. -2023-04-05 03:01:29.003 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 21.9821ms -2023-04-05 03:01:29.003 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:01:29.003 +00:00 [INF] HTTP GET / responded 200 in 24.0956 ms -2023-04-05 03:01:29.004 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T00%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=10&enalbeTail=true - - - 200 - text/html;+charset=utf-8 24.8710ms -2023-04-05 03:01:29.050 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:01:29.051 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:01:29.052 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:01:29.052 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.0983 ms -2023-04-05 03:01:29.052 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 1.8134ms -2023-04-05 03:01:29.065 +00:00 [INF] 2nTWJrViKS85SKR0faIXTA has disconnected: -2023-04-05 03:01:29.072 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:01:29.073 +00:00 [INF] HTTP GET /hub responded 101 in 7823.5496 ms -2023-04-05 03:01:29.073 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=fjuPnw8LW6UDM_CkxD1x5Q - - - 101 - - 7824.1775ms -2023-04-05 03:01:29.081 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=AZoxCoF4_iStMMYRZbjdSQ - - -2023-04-05 03:01:29.082 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:01:29.084 +00:00 [INF] qvJJJH48XoYrtsANXad4KA has connected -2023-04-05 03:01:52.455 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 03:01:52.466 +00:00 [INF] Sending file. Request path: '/settings//appsettings.json'. Physical path: '/app/wwwroot/settings/appsettings.json' -2023-04-05 03:01:52.466 +00:00 [INF] HTTP GET /settings//appsettings.json responded 200 in 10.3509 ms -2023-04-05 03:01:52.466 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 200 5128 application/json 11.0513ms -2023-04-05 03:01:52.503 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 03:01:52.508 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 03:01:52.508 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 5.3895 ms -2023-04-05 03:01:52.508 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 5.9664ms -2023-04-05 03:01:52.523 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 03:01:52.529 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 03:01:52.529 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 5.4619 ms -2023-04-05 03:01:52.529 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 5.9906ms -2023-04-05 03:01:58.837 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 65409 -2023-04-05 03:01:58.838 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:01:58.840 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:01:59.091 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:01:59.092 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 251.0197ms -2023-04-05 03:01:59.092 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:01:59.092 +00:00 [INF] HTTP POST / responded 200 in 254.6359 ms -2023-04-05 03:01:59.093 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 65409 - 200 0 - 255.9396ms -2023-04-05 03:02:01.133 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 59364 -2023-04-05 03:02:01.133 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:01.134 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:01.221 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:01.221 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 86.5959ms -2023-04-05 03:02:01.222 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:01.222 +00:00 [INF] HTTP POST / responded 200 in 89.2709 ms -2023-04-05 03:02:01.223 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 59364 - 200 0 - 90.7908ms -2023-04-05 03:02:03.253 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 168049 -2023-04-05 03:02:03.253 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:03.254 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:03.315 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:03.315 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 60.8929ms -2023-04-05 03:02:03.316 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:03.316 +00:00 [INF] HTTP POST / responded 200 in 62.7047 ms -2023-04-05 03:02:03.317 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 168049 - 200 0 - 64.0496ms -2023-04-05 03:02:05.338 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 5651 -2023-04-05 03:02:05.338 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:05.338 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:05.368 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:05.368 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.6901ms -2023-04-05 03:02:05.369 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:05.369 +00:00 [INF] HTTP POST / responded 200 in 31.0849 ms -2023-04-05 03:02:05.370 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 5651 - 200 0 - 31.9743ms -2023-04-05 03:02:09.424 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 35127 -2023-04-05 03:02:09.425 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:09.425 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:09.453 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:09.454 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.1881ms -2023-04-05 03:02:09.454 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:09.454 +00:00 [INF] HTTP POST / responded 200 in 29.3573 ms -2023-04-05 03:02:09.455 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 35127 - 200 0 - 30.6785ms -2023-04-05 03:02:11.503 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 6024 -2023-04-05 03:02:11.505 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:11.505 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:11.534 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:11.534 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.4969ms -2023-04-05 03:02:11.535 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:11.535 +00:00 [INF] HTTP POST / responded 200 in 30.9870 ms -2023-04-05 03:02:11.536 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 6024 - 200 0 - 32.3543ms -2023-04-05 03:02:13.573 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:13.574 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:13.574 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:13.601 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:13.601 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0243ms -2023-04-05 03:02:13.601 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:13.602 +00:00 [INF] HTTP POST / responded 200 in 28.2946 ms -2023-04-05 03:02:13.602 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9558ms -2023-04-05 03:02:19.648 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:02:19.649 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:19.649 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:19.675 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:19.676 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8544ms -2023-04-05 03:02:19.676 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:19.677 +00:00 [INF] HTTP POST / responded 200 in 28.1567 ms -2023-04-05 03:02:19.677 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.8176ms -2023-04-05 03:02:23.727 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:23.727 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:23.728 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:23.754 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:23.755 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6963ms -2023-04-05 03:02:23.755 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:23.755 +00:00 [INF] HTTP POST / responded 200 in 28.1672 ms -2023-04-05 03:02:23.756 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9535ms -2023-04-05 03:02:29.802 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:29.803 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:29.803 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:29.830 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:29.830 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0766ms -2023-04-05 03:02:29.831 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:29.832 +00:00 [INF] HTTP POST / responded 200 in 28.8466 ms -2023-04-05 03:02:29.832 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.1120ms -2023-04-05 03:02:33.865 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:33.866 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:33.866 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:33.893 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:33.893 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8499ms -2023-04-05 03:02:33.893 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:33.894 +00:00 [INF] HTTP POST / responded 200 in 28.1313 ms -2023-04-05 03:02:33.894 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9164ms -2023-04-05 03:02:37.940 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:37.941 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:37.941 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:37.968 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:37.969 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7628ms -2023-04-05 03:02:37.969 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:37.969 +00:00 [INF] HTTP POST / responded 200 in 28.7247 ms -2023-04-05 03:02:37.969 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8836ms -2023-04-05 03:02:44.043 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:44.044 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:44.045 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:44.071 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:44.071 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5639ms -2023-04-05 03:02:44.072 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:44.072 +00:00 [INF] HTTP POST / responded 200 in 28.0882 ms -2023-04-05 03:02:44.072 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7551ms -2023-04-05 03:02:48.120 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:48.120 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:48.121 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:48.147 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:48.148 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7797ms -2023-04-05 03:02:48.149 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:48.150 +00:00 [INF] HTTP POST / responded 200 in 29.2101 ms -2023-04-05 03:02:48.150 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.4317ms -2023-04-05 03:02:54.197 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:54.198 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:54.198 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:54.225 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:54.225 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7176ms -2023-04-05 03:02:54.225 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:54.226 +00:00 [INF] HTTP POST / responded 200 in 27.9629 ms -2023-04-05 03:02:54.226 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6521ms -2023-04-05 03:02:58.268 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:02:58.268 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:58.268 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:02:58.295 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:02:58.295 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6503ms -2023-04-05 03:02:58.296 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:02:58.296 +00:00 [INF] HTTP POST / responded 200 in 27.6824 ms -2023-04-05 03:02:58.296 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2850ms -2023-04-05 03:03:04.365 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:04.366 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:04.366 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:04.392 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:04.393 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6495ms -2023-04-05 03:03:04.393 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:04.394 +00:00 [INF] HTTP POST / responded 200 in 28.1015 ms -2023-04-05 03:03:04.394 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9484ms -2023-04-05 03:03:08.421 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:08.421 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:08.422 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:08.448 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:08.449 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0423ms -2023-04-05 03:03:08.449 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:08.450 +00:00 [INF] HTTP POST / responded 200 in 28.5037 ms -2023-04-05 03:03:08.450 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4157ms -2023-04-05 03:03:14.507 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:03:14.507 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:14.508 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:14.534 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:14.534 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4786ms -2023-04-05 03:03:14.535 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:14.535 +00:00 [INF] HTTP POST / responded 200 in 27.8422 ms -2023-04-05 03:03:14.535 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.7215ms -2023-04-05 03:03:18.568 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:03:18.568 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:18.569 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:18.595 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:18.595 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5077ms -2023-04-05 03:03:18.595 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:18.596 +00:00 [INF] HTTP POST / responded 200 in 27.7292 ms -2023-04-05 03:03:18.597 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.8142ms -2023-04-05 03:03:24.643 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:24.644 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:24.644 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:24.671 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:24.672 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2981ms -2023-04-05 03:03:24.672 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:24.672 +00:00 [INF] HTTP POST / responded 200 in 28.9459 ms -2023-04-05 03:03:24.673 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7281ms -2023-04-05 03:03:28.741 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:28.742 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:28.743 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:28.771 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:28.771 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.6678ms -2023-04-05 03:03:28.771 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:28.772 +00:00 [INF] HTTP POST / responded 200 in 29.7570 ms -2023-04-05 03:03:28.772 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.8552ms -2023-04-05 03:03:34.820 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:03:34.820 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:34.821 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:34.847 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:34.848 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9839ms -2023-04-05 03:03:34.848 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:34.848 +00:00 [INF] HTTP POST / responded 200 in 28.2223 ms -2023-04-05 03:03:34.849 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.9377ms -2023-04-05 03:03:38.893 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:38.894 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:38.894 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:38.921 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:38.921 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7968ms -2023-04-05 03:03:38.921 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:38.922 +00:00 [INF] HTTP POST / responded 200 in 28.2665 ms -2023-04-05 03:03:38.922 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9386ms -2023-04-05 03:03:44.969 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:44.969 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:44.969 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:44.996 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:44.996 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6855ms -2023-04-05 03:03:44.997 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:44.997 +00:00 [INF] HTTP POST / responded 200 in 28.0640 ms -2023-04-05 03:03:44.997 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7079ms -2023-04-05 03:03:49.030 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:49.030 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:49.031 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:49.058 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:49.058 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.348ms -2023-04-05 03:03:49.058 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:49.059 +00:00 [INF] HTTP POST / responded 200 in 28.6930 ms -2023-04-05 03:03:49.059 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4424ms -2023-04-05 03:03:55.112 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:55.112 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:55.112 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:55.140 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:55.140 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.3011ms -2023-04-05 03:03:55.140 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:55.141 +00:00 [INF] HTTP POST / responded 200 in 28.5375 ms -2023-04-05 03:03:55.141 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2527ms -2023-04-05 03:03:59.173 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:03:59.173 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:59.173 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:03:59.200 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:03:59.200 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6628ms -2023-04-05 03:03:59.200 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:03:59.201 +00:00 [INF] HTTP POST / responded 200 in 27.6947 ms -2023-04-05 03:03:59.201 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3630ms -2023-04-05 03:04:05.258 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:05.258 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:05.259 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:05.285 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:05.285 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5912ms -2023-04-05 03:04:05.286 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:05.286 +00:00 [INF] HTTP POST / responded 200 in 28.1008 ms -2023-04-05 03:04:05.287 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9886ms -2023-04-05 03:04:09.313 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:09.314 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:09.314 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:09.341 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:09.341 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6186ms -2023-04-05 03:04:09.341 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:09.342 +00:00 [INF] HTTP POST / responded 200 in 28.0948 ms -2023-04-05 03:04:09.342 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8758ms -2023-04-05 03:04:15.397 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:15.397 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:15.397 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:15.424 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:15.424 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7507ms -2023-04-05 03:04:15.425 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:15.425 +00:00 [INF] HTTP POST / responded 200 in 27.9943 ms -2023-04-05 03:04:15.425 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6886ms -2023-04-05 03:04:19.470 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:19.470 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:19.471 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:19.497 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:19.498 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7866ms -2023-04-05 03:04:19.498 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:19.498 +00:00 [INF] HTTP POST / responded 200 in 28.0867 ms -2023-04-05 03:04:19.498 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6749ms -2023-04-05 03:04:23.547 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:23.547 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:23.547 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:23.573 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:23.574 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.336ms -2023-04-05 03:04:23.574 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:23.575 +00:00 [INF] HTTP POST / responded 200 in 28.0418 ms -2023-04-05 03:04:23.576 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1109ms -2023-04-05 03:04:29.639 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:29.640 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:29.641 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:29.667 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:29.668 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5996ms -2023-04-05 03:04:29.668 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:29.668 +00:00 [INF] HTTP POST / responded 200 in 28.5264 ms -2023-04-05 03:04:29.668 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7169ms -2023-04-05 03:04:33.737 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:33.737 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:33.737 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:33.763 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:33.764 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2257ms -2023-04-05 03:04:33.764 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:33.764 +00:00 [INF] HTTP POST / responded 200 in 27.2659 ms -2023-04-05 03:04:33.765 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9223ms -2023-04-05 03:04:39.816 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:39.816 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:39.816 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:39.843 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:39.843 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6588ms -2023-04-05 03:04:39.844 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:39.844 +00:00 [INF] HTTP POST / responded 200 in 27.9284 ms -2023-04-05 03:04:39.844 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7445ms -2023-04-05 03:04:43.897 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:43.898 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:43.898 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:43.924 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:43.925 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1772ms -2023-04-05 03:04:43.926 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:43.926 +00:00 [INF] HTTP POST / responded 200 in 28.8078 ms -2023-04-05 03:04:43.927 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8303ms -2023-04-05 03:04:49.985 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:49.985 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:49.985 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:50.011 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:50.012 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3171ms -2023-04-05 03:04:50.012 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:50.012 +00:00 [INF] HTTP POST / responded 200 in 27.4168 ms -2023-04-05 03:04:50.013 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0825ms -2023-04-05 03:04:54.050 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:04:54.050 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:54.050 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:04:54.076 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:04:54.077 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3612ms -2023-04-05 03:04:54.077 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:04:54.077 +00:00 [INF] HTTP POST / responded 200 in 27.5152 ms -2023-04-05 03:04:54.078 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2843ms -2023-04-05 03:05:00.118 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:05:00.118 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:00.118 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:00.145 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:00.145 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4447ms -2023-04-05 03:05:00.145 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:00.146 +00:00 [INF] HTTP POST / responded 200 in 27.5321 ms -2023-04-05 03:05:00.146 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2202ms -2023-04-05 03:05:04.203 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:04.204 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:04.204 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:04.232 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:04.232 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.7757ms -2023-04-05 03:05:04.232 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:04.233 +00:00 [INF] HTTP POST / responded 200 in 29.1887 ms -2023-04-05 03:05:04.233 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.1739ms -2023-04-05 03:05:10.300 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:10.300 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:10.301 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:10.327 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:10.327 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.31ms -2023-04-05 03:05:10.327 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:10.328 +00:00 [INF] HTTP POST / responded 200 in 27.2368 ms -2023-04-05 03:05:10.328 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8895ms -2023-04-05 03:05:10.504 +00:00 [INF] go-EK4qPnJ3q-PdGlrMW7Q has disconnected: -2023-04-05 03:05:10.505 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:05:10.505 +00:00 [INF] HTTP GET /hub responded 101 in 239123.2143 ms -2023-04-05 03:05:10.506 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=b6m1USI85G56oTLgUZHgIg - - - 101 - - 239123.8458ms -2023-04-05 03:05:14.367 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:14.368 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:14.368 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:14.395 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:14.395 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9678ms -2023-04-05 03:05:14.396 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:14.396 +00:00 [INF] HTTP POST / responded 200 in 28.3661 ms -2023-04-05 03:05:14.396 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2401ms -2023-04-05 03:05:20.441 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:20.442 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:20.442 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:20.469 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:20.469 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3958ms -2023-04-05 03:05:20.469 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:20.470 +00:00 [INF] HTTP POST / responded 200 in 27.6084 ms -2023-04-05 03:05:20.470 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4061ms -2023-04-05 03:05:24.514 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:24.515 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:24.515 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:24.541 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:24.542 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4345ms -2023-04-05 03:05:24.542 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:24.542 +00:00 [INF] HTTP POST / responded 200 in 27.7943 ms -2023-04-05 03:05:24.543 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9055ms -2023-04-05 03:05:30.593 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:30.593 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:30.594 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:30.621 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:30.621 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.848ms -2023-04-05 03:05:30.621 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:30.622 +00:00 [INF] HTTP POST / responded 200 in 28.2275 ms -2023-04-05 03:05:30.622 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8803ms -2023-04-05 03:05:34.677 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:34.678 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:34.678 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:34.704 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:34.705 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4255ms -2023-04-05 03:05:34.705 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:34.705 +00:00 [INF] HTTP POST / responded 200 in 27.5352 ms -2023-04-05 03:05:34.705 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1839ms -2023-04-05 03:05:40.770 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:40.771 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:40.771 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:40.798 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:40.798 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9246ms -2023-04-05 03:05:40.799 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:40.799 +00:00 [INF] HTTP POST / responded 200 in 28.5882 ms -2023-04-05 03:05:40.799 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5189ms -2023-04-05 03:05:44.837 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:44.838 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:44.838 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:44.865 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:44.866 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2281ms -2023-04-05 03:05:44.866 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:44.866 +00:00 [INF] HTTP POST / responded 200 in 28.4932 ms -2023-04-05 03:05:44.867 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3104ms -2023-04-05 03:05:48.914 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:48.915 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:48.915 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:48.941 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:48.942 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7208ms -2023-04-05 03:05:48.943 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:48.943 +00:00 [INF] HTTP POST / responded 200 in 28.4848 ms -2023-04-05 03:05:48.943 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2352ms -2023-04-05 03:05:54.987 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:05:54.988 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:54.988 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:55.014 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:55.014 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3612ms -2023-04-05 03:05:55.015 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:55.015 +00:00 [INF] HTTP POST / responded 200 in 27.4397 ms -2023-04-05 03:05:55.015 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.0368ms -2023-04-05 03:05:59.051 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:05:59.051 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:59.052 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:05:59.078 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:05:59.078 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3651ms -2023-04-05 03:05:59.078 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:05:59.079 +00:00 [INF] HTTP POST / responded 200 in 27.4113 ms -2023-04-05 03:05:59.079 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0926ms -2023-04-05 03:06:00.637 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 03:06:00.638 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:06:00.638 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 03:06:00.639 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 03:06:00.639 +00:00 [INF] HTTP GET / responded 302 in 1.9725 ms -2023-04-05 03:06:00.640 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 302 0 - 2.7240ms -2023-04-05 03:06:00.643 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - -2023-04-05 03:06:00.644 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:06:00.644 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:06:00.645 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 03:06:00.646 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 03:06:00.647 +00:00 [ERR] An exception was thrown while deserializing the token. -Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The antiforgery token could not be decrypted. - ---> System.Security.Cryptography.CryptographicException: The key {e6ab7bc9-76bc-43d8-9b6a-b1b5611f25b9} was not found in the key ring. For more information go to http://aka.ms/dataprotectionwarning - at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.UnprotectCore(Byte[] protectedData, Boolean allowOperationsOnRevokedKeys, UnprotectStatus& status) - at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.Unprotect(Byte[] protectedData) - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) - --- End of inner exception stack trace --- - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) - at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery.GetCookieTokenDoesNotThrow(HttpContext httpContext) -2023-04-05 03:06:00.656 +00:00 [INF] Executed ViewResult - view Login executed in 9.9778ms. -2023-04-05 03:06:00.656 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 10.6635ms -2023-04-05 03:06:00.656 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:06:00.656 +00:00 [INF] HTTP GET /Account/Login responded 200 in 12.9364 ms -2023-04-05 03:06:00.657 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - - 200 - text/html;+charset=utf-8 14.0611ms -2023-04-05 03:06:02.512 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 -2023-04-05 03:06:02.513 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:06:02.513 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:06:02.513 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 03:06:02.515 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 03:06:02.515 +00:00 [INF] Executing LocalRedirectResult, redirecting to /. -2023-04-05 03:06:02.516 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 2.0218ms -2023-04-05 03:06:02.516 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 03:06:02.516 +00:00 [INF] HTTP POST /Account/Login responded 302 in 3.9707 ms -2023-04-05 03:06:02.516 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 - 302 0 - 4.6856ms -2023-04-05 03:06:02.518 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 03:06:02.519 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:02.519 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:02.520 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 03:06:02.520 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 03:06:02.526 +00:00 [INF] Received HTTP response headers after 5.54ms - 200 -2023-04-05 03:06:02.527 +00:00 [INF] End processing HTTP request after 6.5807ms - 200 -2023-04-05 03:06:02.547 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 03:06:02.547 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 03:06:02.549 +00:00 [INF] Received HTTP response headers after 1.6058ms - 200 -2023-04-05 03:06:02.549 +00:00 [INF] End processing HTTP request after 2.4696ms - 200 -2023-04-05 03:06:02.550 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 03:06:02.553 +00:00 [INF] Executed ViewResult - view Index executed in 3.3022ms. -2023-04-05 03:06:02.554 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 34.5457ms -2023-04-05 03:06:02.554 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:02.554 +00:00 [INF] HTTP GET / responded 200 in 35.8752 ms -2023-04-05 03:06:02.555 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 200 - text/html;+charset=utf-8 36.3895ms -2023-04-05 03:06:02.571 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:06:02.571 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:06:02.572 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:06:02.572 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 0.8419 ms -2023-04-05 03:06:02.572 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 1.3866ms -2023-04-05 03:06:02.611 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=fGyDOr4hwmI0c4hB6mwWTw - - -2023-04-05 03:06:02.612 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:06:02.614 +00:00 [INF] K5Cyw3muAOWzBOvLFuJf3g has connected -2023-04-05 03:06:05.154 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:06:05.155 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:05.156 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:05.182 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:05.183 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6214ms -2023-04-05 03:06:05.183 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:05.183 +00:00 [INF] HTTP POST / responded 200 in 28.4060 ms -2023-04-05 03:06:05.184 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1773ms -2023-04-05 03:06:07.781 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/api/identity/users - - -2023-04-05 03:06:07.782 +00:00 [INF] Executing endpoint 'core' -2023-04-05 03:06:07.801 +00:00 [INF] Proxying to http://host.docker.internal:59092/api/identity/users HTTP/2 RequestVersionOrLower no-streaming -2023-04-05 03:06:07.813 +00:00 [INF] "Request": An error was encountered before receiving a response. -System.Net.Http.HttpRequestException: Connection refused (host.docker.internal:59092) - ---> System.Net.Sockets.SocketException (111): Connection refused - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) - at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) - at System.Net.Sockets.Socket.g__WaitForConnectWithCancellation|277_0(AwaitableSocketAsyncEventArgs saea, ValueTask connectTask, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - --- End of inner exception stack trace --- - at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) - at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellationAsync(CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) - at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) - at Yarp.ReverseProxy.Forwarder.HttpForwarder.SendAsync(HttpContext context, String destinationPrefix, HttpMessageInvoker httpClient, ForwarderRequestConfig requestConfig, HttpTransformer transformer, CancellationToken cancellationToken) -2023-04-05 03:06:07.822 +00:00 [INF] Executed endpoint 'core' -2023-04-05 03:06:07.822 +00:00 [ERR] HTTP GET /api/identity/users responded 502 in 40.7181 ms -2023-04-05 03:06:07.823 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/api/identity/users - - - 502 0 - 41.4967ms -2023-04-05 03:06:07.850 +00:00 [INF] K5Cyw3muAOWzBOvLFuJf3g has disconnected: -2023-04-05 03:06:07.851 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:06:07.851 +00:00 [INF] HTTP GET /hub responded 101 in 5239.1105 ms -2023-04-05 03:06:07.851 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=fGyDOr4hwmI0c4hB6mwWTw - - - 101 - - 5240.0029ms -2023-04-05 03:06:09.223 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:06:09.223 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:09.224 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:09.250 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:09.250 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2651ms -2023-04-05 03:06:09.250 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:09.251 +00:00 [INF] HTTP POST / responded 200 in 27.3192 ms -2023-04-05 03:06:09.251 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9622ms -2023-04-05 03:06:15.313 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:06:15.314 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:15.315 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:15.343 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:15.343 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.6351ms -2023-04-05 03:06:15.343 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:15.344 +00:00 [INF] HTTP POST / responded 200 in 29.4952 ms -2023-04-05 03:06:15.344 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.4873ms -2023-04-05 03:06:16.821 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/api/auth/identity/users - - -2023-04-05 03:06:16.823 +00:00 [INF] Executing endpoint 'abp' -2023-04-05 03:06:16.824 +00:00 [INF] Proxying to http://host.docker.internal:59093/api/identity/users HTTP/2 RequestVersionOrLower no-streaming -2023-04-05 03:06:17.376 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 3467 -2023-04-05 03:06:17.376 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:17.376 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:17.403 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:17.403 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5101ms -2023-04-05 03:06:17.403 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:17.404 +00:00 [INF] HTTP POST / responded 200 in 27.5153 ms -2023-04-05 03:06:17.404 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 3467 - 200 0 - 28.4038ms -2023-04-05 03:06:18.377 +00:00 [INF] Received HTTP/1.1 response 401. -2023-04-05 03:06:18.386 +00:00 [INF] Executed endpoint 'abp' -2023-04-05 03:06:18.386 +00:00 [INF] HTTP GET /api/auth/identity/users responded 401 in 1564.0031 ms -2023-04-05 03:06:18.386 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/api/auth/identity/users - - - 401 0 - 1564.7475ms -2023-04-05 03:06:19.441 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 27105 -2023-04-05 03:06:19.441 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:19.441 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:19.543 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:19.544 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 102.0775ms -2023-04-05 03:06:19.544 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:19.544 +00:00 [INF] HTTP POST / responded 200 in 103.2586 ms -2023-04-05 03:06:19.545 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 27105 - 200 0 - 103.9522ms -2023-04-05 03:06:25.590 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:06:25.591 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:25.592 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:25.618 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:25.619 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6155ms -2023-04-05 03:06:25.619 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:25.619 +00:00 [INF] HTTP POST / responded 200 in 28.0059 ms -2023-04-05 03:06:25.620 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2236ms -2023-04-05 03:06:29.663 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:06:29.664 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:29.664 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:06:29.691 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:06:29.691 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0028ms -2023-04-05 03:06:29.692 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:06:29.692 +00:00 [INF] HTTP POST / responded 200 in 28.3622 ms -2023-04-05 03:06:29.692 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2065ms -2023-04-05 03:06:30.342 +00:00 [INF] Application is shutting down... -2023-04-05 03:06:30.346 +00:00 [INF] EOMXtDYcQksQaZyNtDmk_w has disconnected: -2023-04-05 03:06:30.346 +00:00 [INF] qvJJJH48XoYrtsANXad4KA has disconnected: -2023-04-05 03:06:30.347 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:06:30.347 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:06:30.347 +00:00 [INF] HTTP GET /hub responded 101 in 318940.9279 ms -2023-04-05 03:06:30.347 +00:00 [INF] HTTP GET /hub responded 101 in 301265.5120 ms -2023-04-05 03:06:30.348 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=uYqPuYFwYCRMb8P4Mz9sNA - - - 101 - - 318942.0164ms -2023-04-05 03:06:30.348 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=AZoxCoF4_iStMMYRZbjdSQ - - - 101 - - 301266.4989ms -2023-04-05 03:07:32.014 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 03:07:32.054 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 03:07:32.073 +00:00 [INF] Loading proxy data from config. -2023-04-05 03:07:32.192 +00:00 [INF] Creating key {f25e66b5-9642-4c45-9b42-bd5d2a8549d0} with creation date 2023-04-05 03:07:32Z, activation date 2023-04-05 03:07:32Z, and expiration date 2023-07-04 03:07:32Z. -2023-04-05 03:07:32.201 +00:00 [WRN] No XML encryptor configured. Key {f25e66b5-9642-4c45-9b42-bd5d2a8549d0} may be persisted to storage in unencrypted form. -2023-04-05 03:07:32.203 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-f25e66b5-9642-4c45-9b42-bd5d2a8549d0.xml'. -2023-04-05 03:07:32.224 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 03:07:32.226 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 03:07:32.227 +00:00 [INF] Hosting environment: Production -2023-04-05 03:07:32.227 +00:00 [INF] Content root path: /app/ -2023-04-05 03:07:32.324 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:07:32.358 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:07:32.359 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:07:32.371 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:07:32.372 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 44.4785 ms -2023-04-05 03:07:32.374 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 51.8052ms -2023-04-05 03:07:32.375 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=3o-PdafqjM-qaD5J9SJvEg - - -2023-04-05 03:07:32.378 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:07:32.378 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:07:32.393 +00:00 [INF] 806d5o7J8D-XPnjtY0neXg has connected -2023-04-05 03:07:34.319 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 03:07:34.321 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:07:34.322 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 03:07:34.322 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 03:07:34.322 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 3.2141 ms -2023-04-05 03:07:34.323 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 3.9140ms -2023-04-05 03:07:34.326 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=pBuEAzhm-G8SfxKCbqs7rA - - -2023-04-05 03:07:34.327 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 03:07:34.328 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 03:07:34.331 +00:00 [INF] rB6NvWZAnF2yzF5Pxf2cHA has connected -2023-04-05 03:08:05.631 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 23968 -2023-04-05 03:08:05.632 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:05.642 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:05.969 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:05.972 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 326.3614ms -2023-04-05 03:08:05.973 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:05.973 +00:00 [INF] HTTP POST / responded 200 in 341.7647 ms -2023-04-05 03:08:05.973 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 23968 - 200 0 - 342.6902ms -2023-04-05 03:08:10.011 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:10.011 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:10.012 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:10.040 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:10.040 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.1537ms -2023-04-05 03:08:10.041 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:10.041 +00:00 [INF] HTTP POST / responded 200 in 30.0914 ms -2023-04-05 03:08:10.042 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.0037ms -2023-04-05 03:08:16.095 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:16.095 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:16.096 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:16.123 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:16.123 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1102ms -2023-04-05 03:08:16.124 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:16.124 +00:00 [INF] HTTP POST / responded 200 in 28.6934 ms -2023-04-05 03:08:16.124 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4966ms -2023-04-05 03:08:20.156 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:20.156 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:20.157 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:20.184 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:20.184 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2519ms -2023-04-05 03:08:20.184 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:20.185 +00:00 [INF] HTTP POST / responded 200 in 28.3742 ms -2023-04-05 03:08:20.185 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9819ms -2023-04-05 03:08:26.255 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:26.255 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:26.255 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:26.282 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:26.282 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7912ms -2023-04-05 03:08:26.282 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:26.283 +00:00 [INF] HTTP POST / responded 200 in 27.9279 ms -2023-04-05 03:08:26.283 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5734ms -2023-04-05 03:08:30.323 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:30.324 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:30.324 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:30.351 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:30.351 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.927ms -2023-04-05 03:08:30.352 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:30.352 +00:00 [INF] HTTP POST / responded 200 in 28.2384 ms -2023-04-05 03:08:30.353 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0409ms -2023-04-05 03:08:36.411 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:36.412 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:36.412 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:36.439 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:36.440 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2905ms -2023-04-05 03:08:36.440 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:36.440 +00:00 [INF] HTTP POST / responded 200 in 28.6483 ms -2023-04-05 03:08:36.441 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3360ms -2023-04-05 03:08:40.487 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:40.488 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:40.488 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:40.515 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:40.515 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0205ms -2023-04-05 03:08:40.516 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:40.516 +00:00 [INF] HTTP POST / responded 200 in 28.2593 ms -2023-04-05 03:08:40.516 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9722ms -2023-04-05 03:08:46.562 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:46.564 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:46.565 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:46.622 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:46.624 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 57.337ms -2023-04-05 03:08:46.625 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:46.627 +00:00 [INF] HTTP POST / responded 200 in 62.5268 ms -2023-04-05 03:08:46.628 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 66.2493ms -2023-04-05 03:08:50.674 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:50.674 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:50.675 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:50.702 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:50.702 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0832ms -2023-04-05 03:08:50.703 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:50.703 +00:00 [INF] HTTP POST / responded 200 in 28.4636 ms -2023-04-05 03:08:50.703 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2530ms -2023-04-05 03:08:54.751 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:08:54.752 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:54.752 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:08:54.779 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:08:54.779 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1202ms -2023-04-05 03:08:54.780 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:08:54.780 +00:00 [INF] HTTP POST / responded 200 in 28.6024 ms -2023-04-05 03:08:54.780 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5895ms -2023-04-05 03:09:00.827 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:09:00.827 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:00.828 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:00.854 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:00.855 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7924ms -2023-04-05 03:09:00.855 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:00.855 +00:00 [INF] HTTP POST / responded 200 in 28.2022 ms -2023-04-05 03:09:00.856 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.9097ms -2023-04-05 03:09:04.896 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:04.897 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:04.897 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:04.924 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:04.924 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6382ms -2023-04-05 03:09:04.924 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:04.925 +00:00 [INF] HTTP POST / responded 200 in 27.9380 ms -2023-04-05 03:09:04.925 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6802ms -2023-04-05 03:09:10.986 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:10.987 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:10.987 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:11.014 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:11.014 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6688ms -2023-04-05 03:09:11.014 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:11.014 +00:00 [INF] HTTP POST / responded 200 in 27.8478 ms -2023-04-05 03:09:11.015 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5317ms -2023-04-05 03:09:15.051 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:15.052 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:15.052 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:15.078 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:15.079 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7006ms -2023-04-05 03:09:15.079 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:15.079 +00:00 [INF] HTTP POST / responded 200 in 27.7872 ms -2023-04-05 03:09:15.080 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6538ms -2023-04-05 03:09:21.131 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:21.132 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:21.133 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:21.160 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:21.160 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0802ms -2023-04-05 03:09:21.160 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:21.161 +00:00 [INF] HTTP POST / responded 200 in 28.9326 ms -2023-04-05 03:09:21.161 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7297ms -2023-04-05 03:09:25.203 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:09:25.204 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:25.204 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:25.231 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:25.231 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.874ms -2023-04-05 03:09:25.231 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:25.232 +00:00 [INF] HTTP POST / responded 200 in 28.1448 ms -2023-04-05 03:09:25.232 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.8946ms -2023-04-05 03:09:31.275 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:31.276 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:31.276 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:31.303 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:31.303 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.649ms -2023-04-05 03:09:31.303 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:31.303 +00:00 [INF] HTTP POST / responded 200 in 27.7853 ms -2023-04-05 03:09:31.304 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4136ms -2023-04-05 03:09:35.344 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:35.344 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:35.345 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:35.371 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:35.371 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3971ms -2023-04-05 03:09:35.372 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:35.372 +00:00 [INF] HTTP POST / responded 200 in 27.4876 ms -2023-04-05 03:09:35.372 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1045ms -2023-04-05 03:09:41.408 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:41.408 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:41.408 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:41.435 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:41.436 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9833ms -2023-04-05 03:09:41.436 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:41.436 +00:00 [INF] HTTP POST / responded 200 in 28.2435 ms -2023-04-05 03:09:41.437 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8955ms -2023-04-05 03:09:45.489 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:45.490 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:45.490 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:45.517 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:45.518 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0492ms -2023-04-05 03:09:45.518 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:45.518 +00:00 [INF] HTTP POST / responded 200 in 28.6221 ms -2023-04-05 03:09:45.518 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2720ms -2023-04-05 03:09:51.566 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:51.567 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:51.567 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:51.594 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:51.594 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8527ms -2023-04-05 03:09:51.595 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:51.595 +00:00 [INF] HTTP POST / responded 200 in 28.0251 ms -2023-04-05 03:09:51.595 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6878ms -2023-04-05 03:09:55.637 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:09:55.638 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:55.638 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:09:55.665 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:09:55.665 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9553ms -2023-04-05 03:09:55.666 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:09:55.666 +00:00 [INF] HTTP POST / responded 200 in 28.4061 ms -2023-04-05 03:09:55.667 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2198ms -2023-04-05 03:10:01.737 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:01.738 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:01.738 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:01.765 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:01.765 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5456ms -2023-04-05 03:10:01.765 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:01.765 +00:00 [INF] HTTP POST / responded 200 in 27.9388 ms -2023-04-05 03:10:01.766 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6047ms -2023-04-05 03:10:05.815 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:05.817 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:05.819 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:05.845 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:05.846 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8656ms -2023-04-05 03:10:05.846 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:05.847 +00:00 [INF] HTTP POST / responded 200 in 30.1723 ms -2023-04-05 03:10:05.847 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 32.3806ms -2023-04-05 03:10:11.913 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:11.914 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:11.914 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:11.942 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:11.942 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.4936ms -2023-04-05 03:10:11.943 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:11.943 +00:00 [INF] HTTP POST / responded 200 in 29.1752 ms -2023-04-05 03:10:11.943 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2660ms -2023-04-05 03:10:15.980 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:15.981 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:15.982 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:16.009 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:16.009 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0472ms -2023-04-05 03:10:16.009 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:16.010 +00:00 [INF] HTTP POST / responded 200 in 28.6679 ms -2023-04-05 03:10:16.010 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8023ms -2023-04-05 03:10:22.074 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:22.075 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:22.075 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:22.101 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:22.102 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5808ms -2023-04-05 03:10:22.102 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:22.102 +00:00 [INF] HTTP POST / responded 200 in 27.8631 ms -2023-04-05 03:10:22.103 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5537ms -2023-04-05 03:10:26.153 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:26.153 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:26.154 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:26.180 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:26.181 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5253ms -2023-04-05 03:10:26.181 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:26.181 +00:00 [INF] HTTP POST / responded 200 in 27.7615 ms -2023-04-05 03:10:26.181 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4351ms -2023-04-05 03:10:30.218 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:30.218 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:30.218 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:30.245 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:30.245 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6477ms -2023-04-05 03:10:30.245 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:30.246 +00:00 [INF] HTTP POST / responded 200 in 27.7366 ms -2023-04-05 03:10:30.246 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4380ms -2023-04-05 03:10:36.301 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:36.301 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:36.302 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:36.330 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:36.330 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.447ms -2023-04-05 03:10:36.330 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:36.331 +00:00 [INF] HTTP POST / responded 200 in 29.3993 ms -2023-04-05 03:10:36.331 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.0803ms -2023-04-05 03:10:40.378 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:40.379 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:40.379 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:40.405 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:40.406 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6577ms -2023-04-05 03:10:40.406 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:40.407 +00:00 [INF] HTTP POST / responded 200 in 28.0363 ms -2023-04-05 03:10:40.407 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7519ms -2023-04-05 03:10:46.463 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:10:46.464 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:46.464 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:46.491 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:46.492 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9509ms -2023-04-05 03:10:46.492 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:46.492 +00:00 [INF] HTTP POST / responded 200 in 28.7469 ms -2023-04-05 03:10:46.493 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 29.4476ms -2023-04-05 03:10:50.532 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:50.532 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:50.533 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:50.559 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:50.559 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6702ms -2023-04-05 03:10:50.560 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:50.561 +00:00 [INF] HTTP POST / responded 200 in 28.4207 ms -2023-04-05 03:10:50.562 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8005ms -2023-04-05 03:10:56.628 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:10:56.628 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:56.629 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:10:56.655 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:10:56.655 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5676ms -2023-04-05 03:10:56.656 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:10:56.656 +00:00 [INF] HTTP POST / responded 200 in 27.6911 ms -2023-04-05 03:10:56.656 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3277ms -2023-04-05 03:11:00.716 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:00.716 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:00.717 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:00.743 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:00.743 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.401ms -2023-04-05 03:11:00.744 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:00.744 +00:00 [INF] HTTP POST / responded 200 in 27.7875 ms -2023-04-05 03:11:00.745 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6330ms -2023-04-05 03:11:06.781 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:06.782 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:06.782 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:06.808 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:06.809 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5061ms -2023-04-05 03:11:06.809 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:06.809 +00:00 [INF] HTTP POST / responded 200 in 27.7909 ms -2023-04-05 03:11:06.810 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5932ms -2023-04-05 03:11:10.858 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:11:10.859 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:10.859 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:10.885 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:10.886 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4786ms -2023-04-05 03:11:10.886 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:10.886 +00:00 [INF] HTTP POST / responded 200 in 27.6879 ms -2023-04-05 03:11:10.887 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.5454ms -2023-04-05 03:11:16.937 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:11:16.938 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:16.938 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:16.964 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:16.965 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2695ms -2023-04-05 03:11:16.965 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:16.965 +00:00 [INF] HTTP POST / responded 200 in 27.2633 ms -2023-04-05 03:11:16.965 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 27.9218ms -2023-04-05 03:11:21.006 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:21.007 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:21.007 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:21.034 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:21.034 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.834ms -2023-04-05 03:11:21.034 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:21.035 +00:00 [INF] HTTP POST / responded 200 in 27.8692 ms -2023-04-05 03:11:21.035 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4422ms -2023-04-05 03:11:27.085 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:27.085 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:27.086 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:27.112 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:27.112 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5045ms -2023-04-05 03:11:27.113 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:27.113 +00:00 [INF] HTTP POST / responded 200 in 27.6724 ms -2023-04-05 03:11:27.113 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3505ms -2023-04-05 03:11:31.165 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:31.166 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:31.166 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:31.192 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:31.193 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4396ms -2023-04-05 03:11:31.193 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:31.193 +00:00 [INF] HTTP POST / responded 200 in 27.5813 ms -2023-04-05 03:11:31.193 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3281ms -2023-04-05 03:11:37.241 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:37.242 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:37.242 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:37.268 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:37.269 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4327ms -2023-04-05 03:11:37.269 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:37.269 +00:00 [INF] HTTP POST / responded 200 in 27.6306 ms -2023-04-05 03:11:37.270 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4864ms -2023-04-05 03:11:41.300 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:41.301 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:41.301 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:41.327 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:41.328 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3712ms -2023-04-05 03:11:41.328 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:41.328 +00:00 [INF] HTTP POST / responded 200 in 27.3973 ms -2023-04-05 03:11:41.328 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1331ms -2023-04-05 03:11:47.392 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:47.392 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:47.393 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:47.419 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:47.420 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6319ms -2023-04-05 03:11:47.420 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:47.420 +00:00 [INF] HTTP POST / responded 200 in 27.9463 ms -2023-04-05 03:11:47.421 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1066ms -2023-04-05 03:11:51.468 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:51.469 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:51.469 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:51.495 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:51.496 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3113ms -2023-04-05 03:11:51.496 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:51.496 +00:00 [INF] HTTP POST / responded 200 in 27.3157 ms -2023-04-05 03:11:51.496 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2053ms -2023-04-05 03:11:57.537 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:11:57.539 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:57.540 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:11:57.566 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:11:57.567 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4855ms -2023-04-05 03:11:57.567 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:11:57.567 +00:00 [INF] HTTP POST / responded 200 in 28.5313 ms -2023-04-05 03:11:57.568 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2124ms -2023-04-05 03:12:01.601 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:01.602 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:01.602 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:01.628 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:01.629 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3466ms -2023-04-05 03:12:01.629 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:01.629 +00:00 [INF] HTTP POST / responded 200 in 27.7372 ms -2023-04-05 03:12:01.629 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6257ms -2023-04-05 03:12:07.670 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:07.670 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:07.670 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:07.697 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:07.697 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5239ms -2023-04-05 03:12:07.697 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:07.698 +00:00 [INF] HTTP POST / responded 200 in 27.7829 ms -2023-04-05 03:12:07.698 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4180ms -2023-04-05 03:12:11.760 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:11.761 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:11.761 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:11.787 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:11.788 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3911ms -2023-04-05 03:12:11.788 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:11.789 +00:00 [INF] HTTP POST / responded 200 in 28.4118 ms -2023-04-05 03:12:11.790 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7688ms -2023-04-05 03:12:15.855 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:15.856 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:15.857 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:15.885 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:15.885 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.5085ms -2023-04-05 03:12:15.885 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:15.886 +00:00 [INF] HTTP POST / responded 200 in 29.9115 ms -2023-04-05 03:12:15.886 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 31.1560ms -2023-04-05 03:12:21.962 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:21.963 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:21.963 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:21.989 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:21.989 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3725ms -2023-04-05 03:12:21.990 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:21.990 +00:00 [INF] HTTP POST / responded 200 in 27.4758 ms -2023-04-05 03:12:21.990 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7154ms -2023-04-05 03:12:26.025 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:26.026 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:26.026 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:26.052 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:26.053 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4991ms -2023-04-05 03:12:26.053 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:26.054 +00:00 [INF] HTTP POST / responded 200 in 28.3326 ms -2023-04-05 03:12:26.054 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3711ms -2023-04-05 03:12:32.125 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:32.126 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:32.126 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:32.153 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:32.153 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5237ms -2023-04-05 03:12:32.154 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:32.154 +00:00 [INF] HTTP POST / responded 200 in 28.1916 ms -2023-04-05 03:12:32.155 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3088ms -2023-04-05 03:12:36.193 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:36.193 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:36.194 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:36.220 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:36.220 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.633ms -2023-04-05 03:12:36.221 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:36.221 +00:00 [INF] HTTP POST / responded 200 in 27.7405 ms -2023-04-05 03:12:36.221 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4668ms -2023-04-05 03:12:42.276 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:42.276 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:42.276 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:42.303 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:42.303 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7125ms -2023-04-05 03:12:42.304 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:42.304 +00:00 [INF] HTTP POST / responded 200 in 27.9452 ms -2023-04-05 03:12:42.304 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6088ms -2023-04-05 03:12:46.344 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:46.344 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:46.344 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:46.370 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:46.371 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1814ms -2023-04-05 03:12:46.371 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:46.371 +00:00 [INF] HTTP POST / responded 200 in 27.3009 ms -2023-04-05 03:12:46.372 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9165ms -2023-04-05 03:12:52.426 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:52.427 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:52.427 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:52.454 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:52.454 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6461ms -2023-04-05 03:12:52.455 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:52.455 +00:00 [INF] HTTP POST / responded 200 in 28.1911 ms -2023-04-05 03:12:52.455 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1241ms -2023-04-05 03:12:56.514 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:12:56.514 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:56.515 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:12:56.542 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:12:56.543 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.2695ms -2023-04-05 03:12:56.543 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:12:56.543 +00:00 [INF] HTTP POST / responded 200 in 28.7778 ms -2023-04-05 03:12:56.544 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8140ms -2023-04-05 03:13:02.588 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:02.588 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:02.589 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:02.615 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:02.615 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.199ms -2023-04-05 03:13:02.615 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:02.615 +00:00 [INF] HTTP POST / responded 200 in 27.2226 ms -2023-04-05 03:13:02.616 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8845ms -2023-04-05 03:13:06.647 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:06.647 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:06.648 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:06.674 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:06.674 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3649ms -2023-04-05 03:13:06.675 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:06.675 +00:00 [INF] HTTP POST / responded 200 in 27.6429 ms -2023-04-05 03:13:06.676 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1822ms -2023-04-05 03:13:12.727 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:12.727 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:12.727 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:12.754 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:12.754 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6757ms -2023-04-05 03:13:12.755 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:12.755 +00:00 [INF] HTTP POST / responded 200 in 28.0773 ms -2023-04-05 03:13:12.756 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8874ms -2023-04-05 03:13:16.796 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:16.797 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:16.797 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:16.823 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:16.823 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2397ms -2023-04-05 03:13:16.824 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:16.824 +00:00 [INF] HTTP POST / responded 200 in 27.3284 ms -2023-04-05 03:13:16.824 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0324ms -2023-04-05 03:13:22.910 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:22.911 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:22.911 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:22.938 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:22.938 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7108ms -2023-04-05 03:13:22.939 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:22.939 +00:00 [INF] HTTP POST / responded 200 in 28.2708 ms -2023-04-05 03:13:22.939 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1930ms -2023-04-05 03:13:26.986 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:13:26.986 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:26.986 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:27.012 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:27.013 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2525ms -2023-04-05 03:13:27.013 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:27.013 +00:00 [INF] HTTP POST / responded 200 in 27.3451 ms -2023-04-05 03:13:27.014 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 27.9701ms -2023-04-05 03:13:33.066 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:13:33.066 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:33.067 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:33.093 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:33.093 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3159ms -2023-04-05 03:13:33.094 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:33.094 +00:00 [INF] HTTP POST / responded 200 in 27.7043 ms -2023-04-05 03:13:33.094 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.6658ms -2023-04-05 03:13:37.136 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:37.137 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:37.137 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:37.164 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:37.164 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4112ms -2023-04-05 03:13:37.165 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:37.165 +00:00 [INF] HTTP POST / responded 200 in 28.2147 ms -2023-04-05 03:13:37.165 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0681ms -2023-04-05 03:13:41.207 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:41.208 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:41.208 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:41.234 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:41.234 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.286ms -2023-04-05 03:13:41.235 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:41.235 +00:00 [INF] HTTP POST / responded 200 in 27.3336 ms -2023-04-05 03:13:41.235 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0618ms -2023-04-05 03:13:47.291 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:47.292 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:47.292 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:47.318 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:47.319 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2684ms -2023-04-05 03:13:47.319 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:47.319 +00:00 [INF] HTTP POST / responded 200 in 27.5510 ms -2023-04-05 03:13:47.320 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4195ms -2023-04-05 03:13:51.355 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:51.356 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:51.356 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:51.382 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:51.382 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2721ms -2023-04-05 03:13:51.383 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:51.383 +00:00 [INF] HTTP POST / responded 200 in 27.3469 ms -2023-04-05 03:13:51.383 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9994ms -2023-04-05 03:13:57.430 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:13:57.430 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:57.431 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:13:57.457 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:13:57.458 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7059ms -2023-04-05 03:13:57.458 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:13:57.458 +00:00 [INF] HTTP POST / responded 200 in 27.9132 ms -2023-04-05 03:13:57.459 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5886ms -2023-04-05 03:14:01.511 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:01.512 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:01.512 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:01.538 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:01.538 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.294ms -2023-04-05 03:14:01.539 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:01.539 +00:00 [INF] HTTP POST / responded 200 in 27.4026 ms -2023-04-05 03:14:01.539 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0524ms -2023-04-05 03:14:07.599 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:07.600 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:07.600 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:07.626 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:07.626 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4134ms -2023-04-05 03:14:07.627 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:07.627 +00:00 [INF] HTTP POST / responded 200 in 27.5699 ms -2023-04-05 03:14:07.628 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4751ms -2023-04-05 03:14:11.660 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:14:11.660 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:11.660 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:11.687 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:11.687 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3373ms -2023-04-05 03:14:11.687 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:11.687 +00:00 [INF] HTTP POST / responded 200 in 27.3401 ms -2023-04-05 03:14:11.688 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 27.9416ms -2023-04-05 03:14:17.739 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:17.740 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:17.740 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:17.767 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:17.767 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4772ms -2023-04-05 03:14:17.767 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:17.767 +00:00 [INF] HTTP POST / responded 200 in 27.4992 ms -2023-04-05 03:14:17.768 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2909ms -2023-04-05 03:14:21.817 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:21.818 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:21.819 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:21.845 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:21.846 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.659ms -2023-04-05 03:14:21.846 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:21.847 +00:00 [INF] HTTP POST / responded 200 in 28.6292 ms -2023-04-05 03:14:21.847 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7137ms -2023-04-05 03:14:27.906 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:27.907 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:27.907 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:27.933 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:27.934 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4427ms -2023-04-05 03:14:27.934 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:27.934 +00:00 [INF] HTTP POST / responded 200 in 27.6068 ms -2023-04-05 03:14:27.935 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5042ms -2023-04-05 03:14:31.989 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:31.989 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:31.990 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:32.016 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:32.016 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2321ms -2023-04-05 03:14:32.016 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:32.017 +00:00 [INF] HTTP POST / responded 200 in 27.3252 ms -2023-04-05 03:14:32.017 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9684ms -2023-04-05 03:14:38.081 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:38.082 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:38.083 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:38.109 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:38.110 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9351ms -2023-04-05 03:14:38.111 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:38.111 +00:00 [INF] HTTP POST / responded 200 in 29.1200 ms -2023-04-05 03:14:38.111 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.1644ms -2023-04-05 03:14:42.166 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:42.167 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:42.167 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:42.193 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:42.194 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.475ms -2023-04-05 03:14:42.194 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:42.194 +00:00 [INF] HTTP POST / responded 200 in 27.9232 ms -2023-04-05 03:14:42.195 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8704ms -2023-04-05 03:14:48.247 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:48.248 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:48.248 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:48.274 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:48.275 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6452ms -2023-04-05 03:14:48.276 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:48.276 +00:00 [INF] HTTP POST / responded 200 in 28.2782 ms -2023-04-05 03:14:48.277 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3800ms -2023-04-05 03:14:52.336 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:52.336 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:52.337 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:52.363 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:52.364 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4981ms -2023-04-05 03:14:52.364 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:52.364 +00:00 [INF] HTTP POST / responded 200 in 27.7518 ms -2023-04-05 03:14:52.365 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7110ms -2023-04-05 03:14:58.413 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:14:58.413 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:58.414 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:14:58.440 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:14:58.440 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.243ms -2023-04-05 03:14:58.440 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:14:58.441 +00:00 [INF] HTTP POST / responded 200 in 27.2825 ms -2023-04-05 03:14:58.441 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9680ms -2023-04-05 03:15:02.476 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:02.477 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:02.477 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:02.503 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:02.503 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3011ms -2023-04-05 03:15:02.504 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:02.504 +00:00 [INF] HTTP POST / responded 200 in 27.4208 ms -2023-04-05 03:15:02.504 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0892ms -2023-04-05 03:15:08.573 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:08.574 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:08.574 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:08.600 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:08.601 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4139ms -2023-04-05 03:15:08.601 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:08.601 +00:00 [INF] HTTP POST / responded 200 in 27.5852 ms -2023-04-05 03:15:08.602 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3514ms -2023-04-05 03:15:12.669 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:12.670 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:12.670 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:12.696 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:12.697 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5257ms -2023-04-05 03:15:12.698 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:12.698 +00:00 [INF] HTTP POST / responded 200 in 28.6144 ms -2023-04-05 03:15:12.699 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.9368ms -2023-04-05 03:15:16.751 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:16.752 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:16.752 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:16.779 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:16.779 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5653ms -2023-04-05 03:15:16.779 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:16.780 +00:00 [INF] HTTP POST / responded 200 in 27.7376 ms -2023-04-05 03:15:16.780 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4601ms -2023-04-05 03:15:22.844 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:22.844 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:22.844 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:22.871 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:22.871 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4724ms -2023-04-05 03:15:22.871 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:22.872 +00:00 [INF] HTTP POST / responded 200 in 27.6702 ms -2023-04-05 03:15:22.872 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3290ms -2023-04-05 03:15:26.913 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:26.913 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:26.913 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:26.939 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:26.940 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7384ms -2023-04-05 03:15:26.941 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:26.941 +00:00 [INF] HTTP POST / responded 200 in 28.2478 ms -2023-04-05 03:15:26.942 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3259ms -2023-04-05 03:15:32.999 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:32.999 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:32.999 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:33.026 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:33.026 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4651ms -2023-04-05 03:15:33.026 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:33.027 +00:00 [INF] HTTP POST / responded 200 in 27.6389 ms -2023-04-05 03:15:33.027 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3081ms -2023-04-05 03:15:37.082 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:37.082 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:37.083 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:37.109 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:37.109 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4345ms -2023-04-05 03:15:37.110 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:37.110 +00:00 [INF] HTTP POST / responded 200 in 27.5586 ms -2023-04-05 03:15:37.111 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8940ms -2023-04-05 03:15:43.174 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:43.175 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:43.175 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:43.201 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:43.201 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3994ms -2023-04-05 03:15:43.202 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:43.202 +00:00 [INF] HTTP POST / responded 200 in 27.4995 ms -2023-04-05 03:15:43.202 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1856ms -2023-04-05 03:15:47.258 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:47.259 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:47.259 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:47.285 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:47.286 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3294ms -2023-04-05 03:15:47.286 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:47.286 +00:00 [INF] HTTP POST / responded 200 in 27.4589 ms -2023-04-05 03:15:47.287 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3522ms -2023-04-05 03:15:53.338 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:53.338 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:53.339 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:53.365 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:53.365 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4735ms -2023-04-05 03:15:53.365 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:53.366 +00:00 [INF] HTTP POST / responded 200 in 27.5469 ms -2023-04-05 03:15:53.366 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3944ms -2023-04-05 03:15:57.408 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:15:57.409 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:57.409 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:15:57.435 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:15:57.436 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4615ms -2023-04-05 03:15:57.436 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:15:57.436 +00:00 [INF] HTTP POST / responded 200 in 27.4986 ms -2023-04-05 03:15:57.436 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2339ms -2023-04-05 03:16:03.493 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:03.493 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:03.493 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:03.519 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:03.520 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3673ms -2023-04-05 03:16:03.520 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:03.520 +00:00 [INF] HTTP POST / responded 200 in 27.4168 ms -2023-04-05 03:16:03.521 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0129ms -2023-04-05 03:16:07.567 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:07.568 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:07.568 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:07.594 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:07.594 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3457ms -2023-04-05 03:16:07.595 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:07.595 +00:00 [INF] HTTP POST / responded 200 in 27.3613 ms -2023-04-05 03:16:07.595 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1036ms -2023-04-05 03:16:13.654 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:13.655 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:13.655 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:13.681 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:13.681 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2555ms -2023-04-05 03:16:13.682 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:13.682 +00:00 [INF] HTTP POST / responded 200 in 27.2017 ms -2023-04-05 03:16:13.682 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8018ms -2023-04-05 03:16:17.715 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:17.715 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:17.716 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:17.742 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:17.742 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4107ms -2023-04-05 03:16:17.743 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:17.743 +00:00 [INF] HTTP POST / responded 200 in 27.5767 ms -2023-04-05 03:16:17.743 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2138ms -2023-04-05 03:16:23.803 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:23.804 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:23.804 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:23.830 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:23.831 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3587ms -2023-04-05 03:16:23.831 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:23.831 +00:00 [INF] HTTP POST / responded 200 in 27.7113 ms -2023-04-05 03:16:23.832 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4621ms -2023-04-05 03:16:27.887 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:27.888 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:27.888 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:27.914 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:27.915 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6128ms -2023-04-05 03:16:27.916 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:27.917 +00:00 [INF] HTTP POST / responded 200 in 28.7021 ms -2023-04-05 03:16:27.917 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.0419ms -2023-04-05 03:16:33.989 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:33.990 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:33.990 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:34.017 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:34.017 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9713ms -2023-04-05 03:16:34.018 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:34.018 +00:00 [INF] HTTP POST / responded 200 in 28.4273 ms -2023-04-05 03:16:34.018 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1046ms -2023-04-05 03:16:38.058 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:38.058 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:38.058 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:38.085 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:38.085 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2763ms -2023-04-05 03:16:38.085 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:38.085 +00:00 [INF] HTTP POST / responded 200 in 27.3623 ms -2023-04-05 03:16:38.086 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9683ms -2023-04-05 03:16:44.133 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:44.133 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:44.133 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:44.159 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:44.160 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3165ms -2023-04-05 03:16:44.160 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:44.160 +00:00 [INF] HTTP POST / responded 200 in 27.3907 ms -2023-04-05 03:16:44.161 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9435ms -2023-04-05 03:16:48.214 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:48.214 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:48.215 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:48.241 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:48.241 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3141ms -2023-04-05 03:16:48.242 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:48.242 +00:00 [INF] HTTP POST / responded 200 in 27.9178 ms -2023-04-05 03:16:48.244 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.6186ms -2023-04-05 03:16:52.285 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:52.286 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:52.287 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:52.314 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:52.314 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4015ms -2023-04-05 03:16:52.314 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:52.315 +00:00 [INF] HTTP POST / responded 200 in 29.2361 ms -2023-04-05 03:16:52.315 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2181ms -2023-04-05 03:16:58.364 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:16:58.365 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:58.365 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:16:58.391 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:16:58.392 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3981ms -2023-04-05 03:16:58.392 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:16:58.392 +00:00 [INF] HTTP POST / responded 200 in 27.4730 ms -2023-04-05 03:16:58.393 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1274ms -2023-04-05 03:17:02.433 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:02.434 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:02.434 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:02.460 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:02.461 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2958ms -2023-04-05 03:17:02.461 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:02.461 +00:00 [INF] HTTP POST / responded 200 in 27.5694 ms -2023-04-05 03:17:02.462 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2498ms -2023-04-05 03:17:08.512 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:08.513 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:08.513 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:08.539 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:08.539 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3135ms -2023-04-05 03:17:08.540 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:08.540 +00:00 [INF] HTTP POST / responded 200 in 27.3635 ms -2023-04-05 03:17:08.540 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9553ms -2023-04-05 03:17:12.596 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:12.597 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:12.597 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:12.623 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:12.624 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.23ms -2023-04-05 03:17:12.624 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:12.624 +00:00 [INF] HTTP POST / responded 200 in 27.2786 ms -2023-04-05 03:17:12.624 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2097ms -2023-04-05 03:17:18.692 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:18.692 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:18.692 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:18.718 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:18.719 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3446ms -2023-04-05 03:17:18.719 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:18.719 +00:00 [INF] HTTP POST / responded 200 in 27.4435 ms -2023-04-05 03:17:18.720 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1069ms -2023-04-05 03:17:22.767 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:22.768 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:22.768 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:22.794 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:22.795 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3425ms -2023-04-05 03:17:22.795 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:22.796 +00:00 [INF] HTTP POST / responded 200 in 27.8178 ms -2023-04-05 03:17:22.796 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8346ms -2023-04-05 03:17:28.848 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:28.848 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:28.849 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:28.875 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:28.875 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.622ms -2023-04-05 03:17:28.876 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:28.876 +00:00 [INF] HTTP POST / responded 200 in 27.9693 ms -2023-04-05 03:17:28.876 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7045ms -2023-04-05 03:17:32.934 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:32.935 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:32.935 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:32.962 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:32.962 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4212ms -2023-04-05 03:17:32.962 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:32.963 +00:00 [INF] HTTP POST / responded 200 in 27.8463 ms -2023-04-05 03:17:32.963 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5444ms -2023-04-05 03:17:39.018 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:39.019 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:39.019 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:39.045 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:39.046 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4205ms -2023-04-05 03:17:39.046 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:39.046 +00:00 [INF] HTTP POST / responded 200 in 27.6122 ms -2023-04-05 03:17:39.046 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3420ms -2023-04-05 03:17:43.098 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:43.099 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:43.099 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:43.125 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:43.126 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4762ms -2023-04-05 03:17:43.126 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:43.126 +00:00 [INF] HTTP POST / responded 200 in 27.8728 ms -2023-04-05 03:17:43.127 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9234ms -2023-04-05 03:17:49.196 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:49.196 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:49.197 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:49.223 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:49.223 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3432ms -2023-04-05 03:17:49.224 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:49.224 +00:00 [INF] HTTP POST / responded 200 in 27.7470 ms -2023-04-05 03:17:49.224 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6025ms -2023-04-05 03:17:53.265 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:53.265 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:53.265 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:53.291 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:53.292 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2217ms -2023-04-05 03:17:53.292 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:53.292 +00:00 [INF] HTTP POST / responded 200 in 27.3205 ms -2023-04-05 03:17:53.293 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0008ms -2023-04-05 03:17:59.360 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:17:59.360 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:59.360 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:17:59.386 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:17:59.387 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2724ms -2023-04-05 03:17:59.387 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:17:59.387 +00:00 [INF] HTTP POST / responded 200 in 27.4173 ms -2023-04-05 03:17:59.388 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0539ms -2023-04-05 03:18:03.455 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:03.455 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:03.455 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:03.482 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:03.482 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2256ms -2023-04-05 03:18:03.482 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:03.482 +00:00 [INF] HTTP POST / responded 200 in 27.3263 ms -2023-04-05 03:18:03.483 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9052ms -2023-04-05 03:18:07.539 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:07.540 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:07.540 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:07.566 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:07.567 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6457ms -2023-04-05 03:18:07.567 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:07.567 +00:00 [INF] HTTP POST / responded 200 in 27.7258 ms -2023-04-05 03:18:07.568 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4114ms -2023-04-05 03:18:13.618 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:13.618 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:13.618 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:13.644 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:13.645 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2545ms -2023-04-05 03:18:13.645 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:13.645 +00:00 [INF] HTTP POST / responded 200 in 27.2747 ms -2023-04-05 03:18:13.645 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8654ms -2023-04-05 03:18:17.680 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:17.681 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:17.681 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:17.707 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:17.707 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3812ms -2023-04-05 03:18:17.708 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:17.708 +00:00 [INF] HTTP POST / responded 200 in 27.4669 ms -2023-04-05 03:18:17.708 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1429ms -2023-04-05 03:18:23.755 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:23.756 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:23.756 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:23.783 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:23.783 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4922ms -2023-04-05 03:18:23.784 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:23.784 +00:00 [INF] HTTP POST / responded 200 in 28.1767 ms -2023-04-05 03:18:23.784 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1691ms -2023-04-05 03:18:27.833 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:27.834 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:27.834 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:27.860 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:27.861 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2412ms -2023-04-05 03:18:27.861 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:27.861 +00:00 [INF] HTTP POST / responded 200 in 27.3055 ms -2023-04-05 03:18:27.862 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1158ms -2023-04-05 03:18:33.913 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:33.913 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:33.914 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:33.940 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:33.940 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.347ms -2023-04-05 03:18:33.941 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:33.941 +00:00 [INF] HTTP POST / responded 200 in 27.5620 ms -2023-04-05 03:18:33.941 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2396ms -2023-04-05 03:18:37.996 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:37.998 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:37.998 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:38.025 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:38.025 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6194ms -2023-04-05 03:18:38.025 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:38.026 +00:00 [INF] HTTP POST / responded 200 in 28.3546 ms -2023-04-05 03:18:38.026 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.9238ms -2023-04-05 03:18:44.082 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:44.083 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:44.083 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:44.109 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:44.110 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4086ms -2023-04-05 03:18:44.110 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:44.110 +00:00 [INF] HTTP POST / responded 200 in 27.6760 ms -2023-04-05 03:18:44.111 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3012ms -2023-04-05 03:18:48.170 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:48.171 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:48.171 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:48.197 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:48.198 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3213ms -2023-04-05 03:18:48.198 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:48.198 +00:00 [INF] HTTP POST / responded 200 in 27.5348 ms -2023-04-05 03:18:48.199 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2710ms -2023-04-05 03:18:54.259 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:18:54.260 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:54.260 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:54.286 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:54.287 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6419ms -2023-04-05 03:18:54.287 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:54.288 +00:00 [INF] HTTP POST / responded 200 in 27.9491 ms -2023-04-05 03:18:54.288 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8345ms -2023-04-05 03:18:58.321 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:18:58.321 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:58.321 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:18:58.348 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:18:58.348 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2099ms -2023-04-05 03:18:58.348 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:18:58.348 +00:00 [INF] HTTP POST / responded 200 in 27.3036 ms -2023-04-05 03:18:58.349 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 27.9993ms -2023-04-05 03:19:04.416 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:04.416 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:04.417 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:04.443 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:04.443 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3227ms -2023-04-05 03:19:04.444 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:04.444 +00:00 [INF] HTTP POST / responded 200 in 27.4841 ms -2023-04-05 03:19:04.444 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1146ms -2023-04-05 03:19:08.488 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:08.488 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:08.488 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:08.515 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:08.515 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2861ms -2023-04-05 03:19:08.515 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:08.516 +00:00 [INF] HTTP POST / responded 200 in 27.5614 ms -2023-04-05 03:19:08.516 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3453ms -2023-04-05 03:19:14.585 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:14.585 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:14.586 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:14.612 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:14.612 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3783ms -2023-04-05 03:19:14.613 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:14.613 +00:00 [INF] HTTP POST / responded 200 in 27.5943 ms -2023-04-05 03:19:14.613 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3022ms -2023-04-05 03:19:18.662 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:18.662 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:18.662 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:18.688 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:18.689 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2954ms -2023-04-05 03:19:18.689 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:18.689 +00:00 [INF] HTTP POST / responded 200 in 27.3470 ms -2023-04-05 03:19:18.690 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5061ms -2023-04-05 03:19:24.745 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:24.746 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:24.746 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:24.772 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:24.773 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3502ms -2023-04-05 03:19:24.773 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:24.773 +00:00 [INF] HTTP POST / responded 200 in 27.4735 ms -2023-04-05 03:19:24.773 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1175ms -2023-04-05 03:19:28.809 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:28.810 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:28.810 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:28.836 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:28.837 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2566ms -2023-04-05 03:19:28.837 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:28.837 +00:00 [INF] HTTP POST / responded 200 in 27.3081 ms -2023-04-05 03:19:28.837 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9588ms -2023-04-05 03:19:34.882 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:34.882 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:34.883 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:34.909 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:34.909 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5314ms -2023-04-05 03:19:34.910 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:34.910 +00:00 [INF] HTTP POST / responded 200 in 27.7036 ms -2023-04-05 03:19:34.910 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3555ms -2023-04-05 03:19:38.945 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:38.945 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:38.945 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:38.972 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:38.972 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.344ms -2023-04-05 03:19:38.972 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:38.972 +00:00 [INF] HTTP POST / responded 200 in 27.3884 ms -2023-04-05 03:19:38.973 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0053ms -2023-04-05 03:19:45.032 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:45.032 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:45.032 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:45.058 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:45.059 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.306ms -2023-04-05 03:19:45.059 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:45.059 +00:00 [INF] HTTP POST / responded 200 in 27.4599 ms -2023-04-05 03:19:45.060 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1280ms -2023-04-05 03:19:49.104 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:49.104 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:49.105 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:49.132 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:49.132 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8398ms -2023-04-05 03:19:49.133 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:49.133 +00:00 [INF] HTTP POST / responded 200 in 28.5978 ms -2023-04-05 03:19:49.133 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5220ms -2023-04-05 03:19:53.174 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:53.175 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:53.175 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:53.201 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:53.201 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2166ms -2023-04-05 03:19:53.202 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:53.202 +00:00 [INF] HTTP POST / responded 200 in 27.3180 ms -2023-04-05 03:19:53.202 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0771ms -2023-04-05 03:19:59.262 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:19:59.263 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:59.263 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:19:59.289 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:19:59.289 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3425ms -2023-04-05 03:19:59.290 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:19:59.290 +00:00 [INF] HTTP POST / responded 200 in 27.2901 ms -2023-04-05 03:19:59.290 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0046ms -2023-04-05 03:20:03.335 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:03.336 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:03.336 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:03.362 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:03.363 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3666ms -2023-04-05 03:20:03.363 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:03.363 +00:00 [INF] HTTP POST / responded 200 in 27.6280 ms -2023-04-05 03:20:03.364 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3250ms -2023-04-05 03:20:09.416 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:09.417 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:09.417 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:09.444 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:09.444 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3386ms -2023-04-05 03:20:09.444 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:09.445 +00:00 [INF] HTTP POST / responded 200 in 27.6914 ms -2023-04-05 03:20:09.445 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9412ms -2023-04-05 03:20:13.480 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:13.480 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:13.481 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:13.507 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:13.507 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1806ms -2023-04-05 03:20:13.507 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:13.508 +00:00 [INF] HTTP POST / responded 200 in 27.2516 ms -2023-04-05 03:20:13.509 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5515ms -2023-04-05 03:20:19.571 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:19.572 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:19.572 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:19.599 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:19.599 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5335ms -2023-04-05 03:20:19.600 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:19.600 +00:00 [INF] HTTP POST / responded 200 in 27.8750 ms -2023-04-05 03:20:19.600 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7260ms -2023-04-05 03:20:23.637 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:23.638 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:23.638 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:23.664 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:23.665 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4671ms -2023-04-05 03:20:23.665 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:23.665 +00:00 [INF] HTTP POST / responded 200 in 27.5477 ms -2023-04-05 03:20:23.666 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1706ms -2023-04-05 03:20:29.709 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:20:29.709 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:29.710 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:29.736 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:29.736 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3341ms -2023-04-05 03:20:29.736 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:29.737 +00:00 [INF] HTTP POST / responded 200 in 27.3469 ms -2023-04-05 03:20:29.737 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 27.9458ms -2023-04-05 03:20:33.787 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:33.787 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:33.788 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:33.814 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:33.814 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2231ms -2023-04-05 03:20:33.814 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:33.815 +00:00 [INF] HTTP POST / responded 200 in 27.1965 ms -2023-04-05 03:20:33.815 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8449ms -2023-04-05 03:20:39.874 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:39.875 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:39.875 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:39.901 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:39.902 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3185ms -2023-04-05 03:20:39.902 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:39.902 +00:00 [INF] HTTP POST / responded 200 in 27.4444 ms -2023-04-05 03:20:39.902 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1750ms -2023-04-05 03:20:43.935 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:43.935 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:43.935 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:43.961 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:43.962 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.318ms -2023-04-05 03:20:43.962 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:43.962 +00:00 [INF] HTTP POST / responded 200 in 27.4104 ms -2023-04-05 03:20:43.963 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0220ms -2023-04-05 03:20:49.997 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:49.997 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:49.997 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:50.023 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:50.024 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2976ms -2023-04-05 03:20:50.024 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:50.024 +00:00 [INF] HTTP POST / responded 200 in 27.4061 ms -2023-04-05 03:20:50.025 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1178ms -2023-04-05 03:20:54.058 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:20:54.058 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:54.059 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:20:54.085 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:20:54.085 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.385ms -2023-04-05 03:20:54.086 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:20:54.086 +00:00 [INF] HTTP POST / responded 200 in 27.5862 ms -2023-04-05 03:20:54.086 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5338ms -2023-04-05 03:21:00.128 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:00.129 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:00.129 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:00.155 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:00.156 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4741ms -2023-04-05 03:21:00.156 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:00.157 +00:00 [INF] HTTP POST / responded 200 in 27.6857 ms -2023-04-05 03:21:00.157 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4702ms -2023-04-05 03:21:04.213 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:04.214 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:04.214 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:04.240 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:04.241 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2357ms -2023-04-05 03:21:04.241 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:04.241 +00:00 [INF] HTTP POST / responded 200 in 27.5236 ms -2023-04-05 03:21:04.242 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8737ms -2023-04-05 03:21:10.282 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:10.282 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:10.283 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:10.309 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:10.309 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4335ms -2023-04-05 03:21:10.310 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:10.310 +00:00 [INF] HTTP POST / responded 200 in 27.7135 ms -2023-04-05 03:21:10.310 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3914ms -2023-04-05 03:21:14.361 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:14.362 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:14.362 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:14.388 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:14.388 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3595ms -2023-04-05 03:21:14.389 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:14.389 +00:00 [INF] HTTP POST / responded 200 in 27.4728 ms -2023-04-05 03:21:14.389 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0619ms -2023-04-05 03:21:20.445 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:20.446 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:20.446 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:20.473 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:20.473 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8668ms -2023-04-05 03:21:20.474 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:20.474 +00:00 [INF] HTTP POST / responded 200 in 28.3365 ms -2023-04-05 03:21:20.474 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0368ms -2023-04-05 03:21:24.537 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:24.537 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:24.538 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:24.564 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:24.564 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1732ms -2023-04-05 03:21:24.564 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:24.565 +00:00 [INF] HTTP POST / responded 200 in 27.2931 ms -2023-04-05 03:21:24.565 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1422ms -2023-04-05 03:21:28.606 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:28.607 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:28.607 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:28.633 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:28.634 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2779ms -2023-04-05 03:21:28.634 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:28.634 +00:00 [INF] HTTP POST / responded 200 in 27.2709 ms -2023-04-05 03:21:28.634 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8785ms -2023-04-05 03:21:34.693 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:21:34.693 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:34.694 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:34.720 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:34.720 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2678ms -2023-04-05 03:21:34.720 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:34.721 +00:00 [INF] HTTP POST / responded 200 in 27.4290 ms -2023-04-05 03:21:34.721 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2784ms -2023-04-05 03:21:38.766 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:38.767 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:38.768 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:38.794 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:38.794 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2765ms -2023-04-05 03:21:38.794 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:38.795 +00:00 [INF] HTTP POST / responded 200 in 27.6284 ms -2023-04-05 03:21:38.795 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6606ms -2023-04-05 03:21:44.844 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:44.844 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:44.845 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:44.871 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:44.871 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.341ms -2023-04-05 03:21:44.871 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:44.872 +00:00 [INF] HTTP POST / responded 200 in 27.4315 ms -2023-04-05 03:21:44.872 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0490ms -2023-04-05 03:21:48.908 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:48.908 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:48.909 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:48.935 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:48.935 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3968ms -2023-04-05 03:21:48.935 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:48.936 +00:00 [INF] HTTP POST / responded 200 in 27.5100 ms -2023-04-05 03:21:48.936 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1732ms -2023-04-05 03:21:54.994 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:54.994 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:54.994 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:55.020 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:55.021 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3031ms -2023-04-05 03:21:55.021 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:55.021 +00:00 [INF] HTTP POST / responded 200 in 27.3706 ms -2023-04-05 03:21:55.022 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9598ms -2023-04-05 03:21:59.053 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:21:59.053 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:59.054 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:21:59.080 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:21:59.081 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3741ms -2023-04-05 03:21:59.081 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:21:59.081 +00:00 [INF] HTTP POST / responded 200 in 27.9013 ms -2023-04-05 03:21:59.081 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8057ms -2023-04-05 03:22:05.141 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:05.142 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:05.142 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:05.169 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:05.169 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4124ms -2023-04-05 03:22:05.170 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:05.170 +00:00 [INF] HTTP POST / responded 200 in 27.7464 ms -2023-04-05 03:22:05.170 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9495ms -2023-04-05 03:22:09.216 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:09.216 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:09.217 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:09.243 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:09.243 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5069ms -2023-04-05 03:22:09.244 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:09.245 +00:00 [INF] HTTP POST / responded 200 in 28.1637 ms -2023-04-05 03:22:09.245 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0083ms -2023-04-05 03:22:15.304 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:15.304 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:15.305 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:15.331 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:15.331 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4265ms -2023-04-05 03:22:15.332 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:15.332 +00:00 [INF] HTTP POST / responded 200 in 27.7569 ms -2023-04-05 03:22:15.332 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4313ms -2023-04-05 03:22:19.380 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:19.381 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:19.381 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:19.407 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:19.408 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3947ms -2023-04-05 03:22:19.408 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:19.408 +00:00 [INF] HTTP POST / responded 200 in 27.6732 ms -2023-04-05 03:22:19.409 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5119ms -2023-04-05 03:22:25.481 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:25.482 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:25.482 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:25.508 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:25.509 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3418ms -2023-04-05 03:22:25.509 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:25.510 +00:00 [INF] HTTP POST / responded 200 in 27.5659 ms -2023-04-05 03:22:25.510 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5069ms -2023-04-05 03:22:29.552 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:29.553 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:29.553 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:29.580 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:29.580 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6659ms -2023-04-05 03:22:29.581 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:29.582 +00:00 [INF] HTTP POST / responded 200 in 29.0202 ms -2023-04-05 03:22:29.582 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.5670ms -2023-04-05 03:22:35.647 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:35.648 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:35.648 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:35.674 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:35.675 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3151ms -2023-04-05 03:22:35.675 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:35.675 +00:00 [INF] HTTP POST / responded 200 in 27.8080 ms -2023-04-05 03:22:35.676 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7862ms -2023-04-05 03:22:39.731 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:39.731 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:39.731 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:39.757 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:39.758 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4524ms -2023-04-05 03:22:39.758 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:39.759 +00:00 [INF] HTTP POST / responded 200 in 28.0840 ms -2023-04-05 03:22:39.760 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.6141ms -2023-04-05 03:22:45.813 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:45.814 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:45.814 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:45.840 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:45.840 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2167ms -2023-04-05 03:22:45.841 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:45.841 +00:00 [INF] HTTP POST / responded 200 in 27.5654 ms -2023-04-05 03:22:45.842 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3215ms -2023-04-05 03:22:49.895 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:49.895 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:49.895 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:49.921 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:49.922 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3984ms -2023-04-05 03:22:49.923 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:49.923 +00:00 [INF] HTTP POST / responded 200 in 28.1762 ms -2023-04-05 03:22:49.924 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2743ms -2023-04-05 03:22:55.981 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:22:55.981 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:55.981 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:22:56.008 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:22:56.008 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4172ms -2023-04-05 03:22:56.008 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:22:56.009 +00:00 [INF] HTTP POST / responded 200 in 27.5638 ms -2023-04-05 03:22:56.009 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2212ms -2023-04-05 03:23:00.054 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:00.054 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:00.055 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:00.081 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:00.081 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3768ms -2023-04-05 03:23:00.082 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:00.082 +00:00 [INF] HTTP POST / responded 200 in 27.4911 ms -2023-04-05 03:23:00.082 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1971ms -2023-04-05 03:23:04.105 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:04.106 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:04.106 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:04.132 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:04.132 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2268ms -2023-04-05 03:23:04.133 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:04.133 +00:00 [INF] HTTP POST / responded 200 in 27.2473 ms -2023-04-05 03:23:04.133 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8153ms -2023-04-05 03:23:10.169 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:10.170 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:10.170 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:10.196 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:10.196 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2224ms -2023-04-05 03:23:10.197 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:10.197 +00:00 [INF] HTTP POST / responded 200 in 27.3277 ms -2023-04-05 03:23:10.197 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9361ms -2023-04-05 03:23:14.232 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:14.233 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:14.233 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:14.260 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:14.260 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5544ms -2023-04-05 03:23:14.260 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:14.261 +00:00 [INF] HTTP POST / responded 200 in 27.7944 ms -2023-04-05 03:23:14.261 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4879ms -2023-04-05 03:23:20.313 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:20.314 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:20.314 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:20.341 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:20.341 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5566ms -2023-04-05 03:23:20.342 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:20.342 +00:00 [INF] HTTP POST / responded 200 in 28.0929 ms -2023-04-05 03:23:20.343 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9959ms -2023-04-05 03:23:24.383 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:24.383 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:24.383 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:24.409 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:24.410 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.397ms -2023-04-05 03:23:24.410 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:24.411 +00:00 [INF] HTTP POST / responded 200 in 27.7450 ms -2023-04-05 03:23:24.411 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5095ms -2023-04-05 03:23:30.453 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:30.454 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:30.454 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:30.480 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:30.480 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2096ms -2023-04-05 03:23:30.481 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:30.481 +00:00 [INF] HTTP POST / responded 200 in 27.4055 ms -2023-04-05 03:23:30.481 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1110ms -2023-04-05 03:23:34.518 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:34.519 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:34.520 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:34.546 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:34.547 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5122ms -2023-04-05 03:23:34.547 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:34.547 +00:00 [INF] HTTP POST / responded 200 in 28.3316 ms -2023-04-05 03:23:34.547 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1779ms -2023-04-05 03:23:40.597 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:40.598 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:40.598 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:40.624 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:40.624 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3544ms -2023-04-05 03:23:40.625 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:40.625 +00:00 [INF] HTTP POST / responded 200 in 27.5175 ms -2023-04-05 03:23:40.626 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3287ms -2023-04-05 03:23:44.656 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:44.656 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:44.657 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:44.683 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:44.683 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5146ms -2023-04-05 03:23:44.684 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:44.684 +00:00 [INF] HTTP POST / responded 200 in 27.6531 ms -2023-04-05 03:23:44.684 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3669ms -2023-04-05 03:23:50.751 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:50.751 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:50.751 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:50.778 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:50.778 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4976ms -2023-04-05 03:23:50.779 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:50.779 +00:00 [INF] HTTP POST / responded 200 in 27.6604 ms -2023-04-05 03:23:50.779 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3255ms -2023-04-05 03:23:54.817 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:23:54.818 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:54.818 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:23:54.844 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:23:54.844 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3646ms -2023-04-05 03:23:54.845 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:23:54.845 +00:00 [INF] HTTP POST / responded 200 in 27.4190 ms -2023-04-05 03:23:54.845 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1809ms -2023-04-05 03:24:00.896 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:00.896 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:00.897 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:00.923 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:00.923 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2398ms -2023-04-05 03:24:00.923 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:00.924 +00:00 [INF] HTTP POST / responded 200 in 27.2117 ms -2023-04-05 03:24:00.924 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8165ms -2023-04-05 03:24:04.974 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:04.974 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:04.974 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:05.000 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:05.001 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2492ms -2023-04-05 03:24:05.001 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:05.001 +00:00 [INF] HTTP POST / responded 200 in 27.3262 ms -2023-04-05 03:24:05.002 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9500ms -2023-04-05 03:24:11.059 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:24:11.059 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:11.060 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:11.086 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:11.086 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.339ms -2023-04-05 03:24:11.087 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:11.087 +00:00 [INF] HTTP POST / responded 200 in 27.4597 ms -2023-04-05 03:24:11.087 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.1054ms -2023-04-05 03:24:15.121 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:15.122 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:15.122 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:15.148 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:15.148 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2601ms -2023-04-05 03:24:15.149 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:15.149 +00:00 [INF] HTTP POST / responded 200 in 27.2667 ms -2023-04-05 03:24:15.149 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8284ms -2023-04-05 03:24:21.197 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:21.198 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:21.199 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:21.225 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:21.225 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4539ms -2023-04-05 03:24:21.226 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:21.226 +00:00 [INF] HTTP POST / responded 200 in 27.9505 ms -2023-04-05 03:24:21.226 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1774ms -2023-04-05 03:24:25.277 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:25.277 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:25.277 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:25.303 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:25.304 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.21ms -2023-04-05 03:24:25.304 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:25.304 +00:00 [INF] HTTP POST / responded 200 in 27.3211 ms -2023-04-05 03:24:25.305 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0805ms -2023-04-05 03:24:31.337 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:31.337 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:31.338 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:31.364 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:31.364 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2445ms -2023-04-05 03:24:31.364 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:31.365 +00:00 [INF] HTTP POST / responded 200 in 27.2824 ms -2023-04-05 03:24:31.365 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9269ms -2023-04-05 03:24:35.406 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:35.406 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:35.406 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:35.432 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:35.433 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2172ms -2023-04-05 03:24:35.433 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:35.433 +00:00 [INF] HTTP POST / responded 200 in 27.2412 ms -2023-04-05 03:24:35.433 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8415ms -2023-04-05 03:24:41.485 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:41.485 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:41.485 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:41.511 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:41.512 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2847ms -2023-04-05 03:24:41.512 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:41.512 +00:00 [INF] HTTP POST / responded 200 in 27.4404 ms -2023-04-05 03:24:41.513 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0650ms -2023-04-05 03:24:45.562 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:45.562 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:45.562 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:45.588 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:45.589 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2964ms -2023-04-05 03:24:45.589 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:45.590 +00:00 [INF] HTTP POST / responded 200 in 27.5599 ms -2023-04-05 03:24:45.590 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3303ms -2023-04-05 03:24:49.639 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:49.640 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:49.640 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:49.666 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:49.666 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2956ms -2023-04-05 03:24:49.667 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:49.667 +00:00 [INF] HTTP POST / responded 200 in 27.4622 ms -2023-04-05 03:24:49.667 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1517ms -2023-04-05 03:24:55.737 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:55.738 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:55.738 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:55.764 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:55.765 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2918ms -2023-04-05 03:24:55.765 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:55.765 +00:00 [INF] HTTP POST / responded 200 in 27.2871 ms -2023-04-05 03:24:55.765 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9364ms -2023-04-05 03:24:59.810 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:24:59.811 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:59.811 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:24:59.838 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:24:59.838 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4937ms -2023-04-05 03:24:59.838 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:24:59.839 +00:00 [INF] HTTP POST / responded 200 in 27.8099 ms -2023-04-05 03:24:59.840 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5008ms -2023-04-05 03:25:05.898 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:05.898 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:05.899 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:05.925 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:05.925 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5438ms -2023-04-05 03:25:05.926 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:05.926 +00:00 [INF] HTTP POST / responded 200 in 27.6427 ms -2023-04-05 03:25:05.926 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3243ms -2023-04-05 03:25:09.967 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:09.968 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:09.968 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:09.994 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:09.995 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3825ms -2023-04-05 03:25:09.995 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:09.995 +00:00 [INF] HTTP POST / responded 200 in 27.5804 ms -2023-04-05 03:25:09.996 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1950ms -2023-04-05 03:25:16.035 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:16.036 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:16.036 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:16.062 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:16.063 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6076ms -2023-04-05 03:25:16.063 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:16.063 +00:00 [INF] HTTP POST / responded 200 in 27.9060 ms -2023-04-05 03:25:16.064 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6605ms -2023-04-05 03:25:20.108 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:20.108 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:20.109 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:20.135 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:20.135 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3485ms -2023-04-05 03:25:20.135 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:20.136 +00:00 [INF] HTTP POST / responded 200 in 27.4480 ms -2023-04-05 03:25:20.136 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1679ms -2023-04-05 03:25:26.194 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:26.194 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:26.194 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:26.220 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:26.221 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2623ms -2023-04-05 03:25:26.221 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:26.221 +00:00 [INF] HTTP POST / responded 200 in 27.3004 ms -2023-04-05 03:25:26.221 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9586ms -2023-04-05 03:25:30.274 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:30.275 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:30.276 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:30.302 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:30.303 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8378ms -2023-04-05 03:25:30.303 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:30.303 +00:00 [INF] HTTP POST / responded 200 in 28.3137 ms -2023-04-05 03:25:30.304 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4885ms -2023-04-05 03:25:36.371 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:36.372 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:36.372 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:36.398 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:36.399 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.213ms -2023-04-05 03:25:36.399 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:36.399 +00:00 [INF] HTTP POST / responded 200 in 27.2194 ms -2023-04-05 03:25:36.400 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1247ms -2023-04-05 03:25:40.426 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:40.426 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:40.426 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:40.452 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:40.453 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2975ms -2023-04-05 03:25:40.453 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:40.453 +00:00 [INF] HTTP POST / responded 200 in 27.3327 ms -2023-04-05 03:25:40.454 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0242ms -2023-04-05 03:25:46.496 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:46.496 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:46.497 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:46.523 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:46.523 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2959ms -2023-04-05 03:25:46.524 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:46.524 +00:00 [INF] HTTP POST / responded 200 in 27.3912 ms -2023-04-05 03:25:46.524 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0025ms -2023-04-05 03:25:50.553 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:50.554 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:50.554 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:50.580 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:50.580 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2697ms -2023-04-05 03:25:50.581 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:50.581 +00:00 [INF] HTTP POST / responded 200 in 27.2410 ms -2023-04-05 03:25:50.581 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8781ms -2023-04-05 03:25:56.651 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:25:56.652 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:56.652 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:25:56.678 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:25:56.679 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.44ms -2023-04-05 03:25:56.679 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:25:56.679 +00:00 [INF] HTTP POST / responded 200 in 27.6380 ms -2023-04-05 03:25:56.680 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2770ms -2023-04-05 03:26:00.726 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:26:00.727 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:00.728 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:00.754 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:00.754 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3616ms -2023-04-05 03:26:00.755 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:00.755 +00:00 [INF] HTTP POST / responded 200 in 27.6562 ms -2023-04-05 03:26:00.755 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.9173ms -2023-04-05 03:26:06.813 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:06.813 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:06.814 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:06.840 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:06.840 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2329ms -2023-04-05 03:26:06.840 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:06.841 +00:00 [INF] HTTP POST / responded 200 in 27.2788 ms -2023-04-05 03:26:06.841 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9448ms -2023-04-05 03:26:10.876 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:10.876 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:10.877 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:10.903 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:10.903 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2489ms -2023-04-05 03:26:10.903 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:10.904 +00:00 [INF] HTTP POST / responded 200 in 27.2610 ms -2023-04-05 03:26:10.904 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8966ms -2023-04-05 03:26:16.961 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:16.962 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:16.963 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:16.989 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:16.990 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4831ms -2023-04-05 03:26:16.990 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:16.990 +00:00 [INF] HTTP POST / responded 200 in 28.4396 ms -2023-04-05 03:26:16.990 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2533ms -2023-04-05 03:26:21.043 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:21.044 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:21.044 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:21.071 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:21.071 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5545ms -2023-04-05 03:26:21.072 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:21.072 +00:00 [INF] HTTP POST / responded 200 in 28.6196 ms -2023-04-05 03:26:21.073 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7939ms -2023-04-05 03:26:25.112 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:25.113 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:25.113 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:25.139 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:25.140 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6373ms -2023-04-05 03:26:25.140 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:25.140 +00:00 [INF] HTTP POST / responded 200 in 27.8615 ms -2023-04-05 03:26:25.141 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5839ms -2023-04-05 03:26:31.189 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:31.189 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:31.189 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:31.216 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:31.216 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6531ms -2023-04-05 03:26:31.217 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:31.217 +00:00 [INF] HTTP POST / responded 200 in 28.1133 ms -2023-04-05 03:26:31.217 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7509ms -2023-04-05 03:26:35.271 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:35.271 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:35.271 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:35.297 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:35.298 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2072ms -2023-04-05 03:26:35.298 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:35.298 +00:00 [INF] HTTP POST / responded 200 in 27.2403 ms -2023-04-05 03:26:35.299 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0983ms -2023-04-05 03:26:41.349 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:41.350 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:41.350 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:41.377 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:41.377 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8179ms -2023-04-05 03:26:41.378 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:41.378 +00:00 [INF] HTTP POST / responded 200 in 28.6956 ms -2023-04-05 03:26:41.378 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5041ms -2023-04-05 03:26:45.406 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:45.407 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:45.407 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:45.433 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:45.433 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3207ms -2023-04-05 03:26:45.434 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:45.434 +00:00 [INF] HTTP POST / responded 200 in 27.3567 ms -2023-04-05 03:26:45.434 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0178ms -2023-04-05 03:26:51.475 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:51.476 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:51.476 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:51.502 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:51.503 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3885ms -2023-04-05 03:26:51.503 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:51.503 +00:00 [INF] HTTP POST / responded 200 in 27.6809 ms -2023-04-05 03:26:51.504 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5159ms -2023-04-05 03:26:55.544 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:26:55.544 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:55.544 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:26:55.571 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:26:55.571 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6862ms -2023-04-05 03:26:55.572 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:26:55.573 +00:00 [INF] HTTP POST / responded 200 in 28.7903 ms -2023-04-05 03:26:55.574 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.0494ms -2023-04-05 03:27:01.628 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:01.628 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:01.629 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:01.655 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:01.655 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2777ms -2023-04-05 03:27:01.656 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:01.656 +00:00 [INF] HTTP POST / responded 200 in 27.7043 ms -2023-04-05 03:27:01.656 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5509ms -2023-04-05 03:27:05.707 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:05.708 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:05.708 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:05.734 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:05.735 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3676ms -2023-04-05 03:27:05.735 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:05.735 +00:00 [INF] HTTP POST / responded 200 in 27.5169 ms -2023-04-05 03:27:05.735 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1104ms -2023-04-05 03:27:11.786 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:11.787 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:11.787 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:11.813 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:11.814 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2683ms -2023-04-05 03:27:11.814 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:11.814 +00:00 [INF] HTTP POST / responded 200 in 27.4886 ms -2023-04-05 03:27:11.815 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1934ms -2023-04-05 03:27:15.858 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:15.859 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:15.860 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:15.886 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:15.886 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2644ms -2023-04-05 03:27:15.887 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:15.887 +00:00 [INF] HTTP POST / responded 200 in 27.6413 ms -2023-04-05 03:27:15.887 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7728ms -2023-04-05 03:27:21.952 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:21.953 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:21.954 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:21.981 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:21.981 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9727ms -2023-04-05 03:27:21.982 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:21.982 +00:00 [INF] HTTP POST / responded 200 in 29.1401 ms -2023-04-05 03:27:21.983 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.0798ms -2023-04-05 03:27:26.019 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:26.019 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:26.019 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:26.046 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:26.046 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5601ms -2023-04-05 03:27:26.047 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:26.047 +00:00 [INF] HTTP POST / responded 200 in 28.0913 ms -2023-04-05 03:27:26.047 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7126ms -2023-04-05 03:27:32.098 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:27:32.099 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:32.099 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:32.125 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:32.126 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3755ms -2023-04-05 03:27:32.126 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:32.126 +00:00 [INF] HTTP POST / responded 200 in 27.4396 ms -2023-04-05 03:27:32.127 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.1695ms -2023-04-05 03:27:36.164 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:36.164 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:36.164 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:36.191 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:36.191 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3189ms -2023-04-05 03:27:36.191 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:36.192 +00:00 [INF] HTTP POST / responded 200 in 27.7703 ms -2023-04-05 03:27:36.192 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6267ms -2023-04-05 03:27:42.258 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:42.259 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:42.259 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:42.286 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:42.286 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6775ms -2023-04-05 03:27:42.287 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:42.287 +00:00 [INF] HTTP POST / responded 200 in 28.0684 ms -2023-04-05 03:27:42.287 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9981ms -2023-04-05 03:27:46.329 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:46.329 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:46.330 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:46.356 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:46.356 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2077ms -2023-04-05 03:27:46.356 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:46.357 +00:00 [INF] HTTP POST / responded 200 in 27.3005 ms -2023-04-05 03:27:46.357 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9107ms -2023-04-05 03:27:52.397 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:52.398 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:52.398 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:52.424 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:52.425 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3095ms -2023-04-05 03:27:52.425 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:52.425 +00:00 [INF] HTTP POST / responded 200 in 27.5447 ms -2023-04-05 03:27:52.426 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3690ms -2023-04-05 03:27:56.471 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:27:56.471 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:56.472 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:27:56.498 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:27:56.499 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3824ms -2023-04-05 03:27:56.499 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:27:56.499 +00:00 [INF] HTTP POST / responded 200 in 27.7775 ms -2023-04-05 03:27:56.499 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6230ms -2023-04-05 03:28:02.533 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:02.533 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:02.533 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:02.559 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:02.560 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4856ms -2023-04-05 03:28:02.560 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:02.561 +00:00 [INF] HTTP POST / responded 200 in 27.9028 ms -2023-04-05 03:28:02.561 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7725ms -2023-04-05 03:28:06.586 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:06.586 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:06.587 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:06.613 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:06.613 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3715ms -2023-04-05 03:28:06.614 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:06.614 +00:00 [INF] HTTP POST / responded 200 in 27.5275 ms -2023-04-05 03:28:06.614 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2556ms -2023-04-05 03:28:10.671 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:10.672 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:10.672 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:10.698 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:10.699 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4651ms -2023-04-05 03:28:10.699 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:10.700 +00:00 [INF] HTTP POST / responded 200 in 27.9001 ms -2023-04-05 03:28:10.700 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6481ms -2023-04-05 03:28:16.735 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:16.735 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:16.736 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:16.762 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:16.762 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3479ms -2023-04-05 03:28:16.763 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:16.763 +00:00 [INF] HTTP POST / responded 200 in 27.3951 ms -2023-04-05 03:28:16.763 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9702ms -2023-04-05 03:28:20.798 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:20.798 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:20.799 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:20.825 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:20.825 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6286ms -2023-04-05 03:28:20.826 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:20.826 +00:00 [INF] HTTP POST / responded 200 in 28.1402 ms -2023-04-05 03:28:20.827 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.9417ms -2023-04-05 03:28:26.879 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:26.879 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:26.880 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:26.906 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:26.906 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3265ms -2023-04-05 03:28:26.906 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:26.907 +00:00 [INF] HTTP POST / responded 200 in 27.3489 ms -2023-04-05 03:28:26.907 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9913ms -2023-04-05 03:28:30.941 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:30.942 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:30.942 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:30.969 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:30.969 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8746ms -2023-04-05 03:28:30.970 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:30.970 +00:00 [INF] HTTP POST / responded 200 in 28.3436 ms -2023-04-05 03:28:30.971 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2538ms -2023-04-05 03:28:37.027 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:37.027 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:37.028 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:37.054 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:37.054 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4516ms -2023-04-05 03:28:37.055 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:37.055 +00:00 [INF] HTTP POST / responded 200 in 27.7557 ms -2023-04-05 03:28:37.055 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5406ms -2023-04-05 03:28:41.094 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:41.095 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:41.095 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:41.121 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:41.122 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4702ms -2023-04-05 03:28:41.122 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:41.122 +00:00 [INF] HTTP POST / responded 200 in 27.7797 ms -2023-04-05 03:28:41.123 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4254ms -2023-04-05 03:28:47.175 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:47.175 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:47.176 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:47.202 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:47.203 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4788ms -2023-04-05 03:28:47.203 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:47.203 +00:00 [INF] HTTP POST / responded 200 in 27.6781 ms -2023-04-05 03:28:47.203 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6072ms -2023-04-05 03:28:51.254 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:51.254 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:51.255 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:51.281 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:51.281 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2656ms -2023-04-05 03:28:51.281 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:51.282 +00:00 [INF] HTTP POST / responded 200 in 27.2660 ms -2023-04-05 03:28:51.282 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8939ms -2023-04-05 03:28:57.343 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:28:57.344 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:57.344 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:28:57.370 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:28:57.370 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2957ms -2023-04-05 03:28:57.371 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:28:57.371 +00:00 [INF] HTTP POST / responded 200 in 27.3879 ms -2023-04-05 03:28:57.371 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0374ms -2023-04-05 03:29:01.410 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:01.410 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:01.411 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:01.437 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:01.437 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3493ms -2023-04-05 03:29:01.438 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:01.438 +00:00 [INF] HTTP POST / responded 200 in 27.5653 ms -2023-04-05 03:29:01.438 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5108ms -2023-04-05 03:29:07.504 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:07.505 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:07.505 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:07.531 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:07.531 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2604ms -2023-04-05 03:29:07.532 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:07.532 +00:00 [INF] HTTP POST / responded 200 in 27.2752 ms -2023-04-05 03:29:07.532 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9071ms -2023-04-05 03:29:11.582 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:11.582 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:11.582 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:11.608 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:11.609 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.406ms -2023-04-05 03:29:11.609 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:11.609 +00:00 [INF] HTTP POST / responded 200 in 27.3780 ms -2023-04-05 03:29:11.610 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0386ms -2023-04-05 03:29:17.654 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:17.655 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:17.655 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:17.681 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:17.682 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3117ms -2023-04-05 03:29:17.682 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:17.682 +00:00 [INF] HTTP POST / responded 200 in 27.4330 ms -2023-04-05 03:29:17.682 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0917ms -2023-04-05 03:29:21.726 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:21.726 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:21.727 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:21.753 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:21.753 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3988ms -2023-04-05 03:29:21.754 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:21.754 +00:00 [INF] HTTP POST / responded 200 in 27.9037 ms -2023-04-05 03:29:21.754 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7305ms -2023-04-05 03:29:27.800 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:27.801 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:27.801 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:27.827 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:27.828 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.523ms -2023-04-05 03:29:27.828 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:27.828 +00:00 [INF] HTTP POST / responded 200 in 27.6104 ms -2023-04-05 03:29:27.829 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2262ms -2023-04-05 03:29:31.876 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:31.876 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:31.877 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:31.903 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:31.903 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2495ms -2023-04-05 03:29:31.904 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:31.904 +00:00 [INF] HTTP POST / responded 200 in 27.4977 ms -2023-04-05 03:29:31.904 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4073ms -2023-04-05 03:29:37.966 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:37.966 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:37.967 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:37.993 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:37.993 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5081ms -2023-04-05 03:29:37.994 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:37.994 +00:00 [INF] HTTP POST / responded 200 in 27.8512 ms -2023-04-05 03:29:37.995 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6920ms -2023-04-05 03:29:42.048 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:42.049 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:42.049 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:42.075 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:42.076 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6146ms -2023-04-05 03:29:42.076 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:42.076 +00:00 [INF] HTTP POST / responded 200 in 27.9046 ms -2023-04-05 03:29:42.077 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5267ms -2023-04-05 03:29:46.111 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:46.111 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:46.112 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:46.138 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:46.139 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5633ms -2023-04-05 03:29:46.139 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:46.140 +00:00 [INF] HTTP POST / responded 200 in 28.2354 ms -2023-04-05 03:29:46.140 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.5733ms -2023-04-05 03:29:52.179 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:52.179 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:52.180 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:52.206 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:52.206 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2457ms -2023-04-05 03:29:52.206 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:52.207 +00:00 [INF] HTTP POST / responded 200 in 27.3241 ms -2023-04-05 03:29:52.207 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9838ms -2023-04-05 03:29:56.249 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:29:56.249 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:56.250 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:29:56.276 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:29:56.276 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3182ms -2023-04-05 03:29:56.276 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:29:56.277 +00:00 [INF] HTTP POST / responded 200 in 27.3105 ms -2023-04-05 03:29:56.277 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0055ms -2023-04-05 03:30:02.338 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:02.339 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:02.339 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:02.365 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:02.365 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2442ms -2023-04-05 03:30:02.366 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:02.366 +00:00 [INF] HTTP POST / responded 200 in 27.1610 ms -2023-04-05 03:30:02.366 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.7644ms -2023-04-05 03:30:06.422 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:06.423 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:06.423 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:06.449 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:06.449 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3527ms -2023-04-05 03:30:06.450 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:06.450 +00:00 [INF] HTTP POST / responded 200 in 27.5019 ms -2023-04-05 03:30:06.451 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2982ms -2023-04-05 03:30:12.493 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:12.494 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:12.494 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:12.520 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:12.521 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3683ms -2023-04-05 03:30:12.521 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:12.521 +00:00 [INF] HTTP POST / responded 200 in 27.4286 ms -2023-04-05 03:30:12.521 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0690ms -2023-04-05 03:30:16.547 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:16.547 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:16.547 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:16.574 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:16.574 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2608ms -2023-04-05 03:30:16.574 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:16.575 +00:00 [INF] HTTP POST / responded 200 in 27.4855 ms -2023-04-05 03:30:16.575 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1984ms -2023-04-05 03:30:22.631 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:22.631 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:22.632 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:22.658 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:22.659 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9428ms -2023-04-05 03:30:22.660 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:22.660 +00:00 [INF] HTTP POST / responded 200 in 28.8567 ms -2023-04-05 03:30:22.661 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.7980ms -2023-04-05 03:30:26.698 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:26.699 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:26.699 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:26.725 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:26.726 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3058ms -2023-04-05 03:30:26.726 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:26.726 +00:00 [INF] HTTP POST / responded 200 in 27.4206 ms -2023-04-05 03:30:26.727 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1169ms -2023-04-05 03:30:32.791 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:32.791 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:32.792 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:32.818 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:32.818 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5218ms -2023-04-05 03:30:32.819 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:32.819 +00:00 [INF] HTTP POST / responded 200 in 27.5935 ms -2023-04-05 03:30:32.819 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2392ms -2023-04-05 03:30:36.852 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:36.852 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:36.852 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:36.878 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:36.879 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4717ms -2023-04-05 03:30:36.879 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:36.879 +00:00 [INF] HTTP POST / responded 200 in 27.6277 ms -2023-04-05 03:30:36.880 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3530ms -2023-04-05 03:30:42.929 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:42.929 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:42.929 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:42.955 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:42.956 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2795ms -2023-04-05 03:30:42.956 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:42.956 +00:00 [INF] HTTP POST / responded 200 in 27.3073 ms -2023-04-05 03:30:42.957 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9104ms -2023-04-05 03:30:46.987 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:46.987 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:46.987 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:47.014 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:47.014 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3742ms -2023-04-05 03:30:47.014 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:47.015 +00:00 [INF] HTTP POST / responded 200 in 27.4891 ms -2023-04-05 03:30:47.015 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2443ms -2023-04-05 03:30:53.062 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:53.063 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:53.063 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:53.090 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:53.090 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4718ms -2023-04-05 03:30:53.091 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:53.091 +00:00 [INF] HTTP POST / responded 200 in 28.5622 ms -2023-04-05 03:30:53.092 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.8013ms -2023-04-05 03:30:57.150 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:30:57.151 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:57.151 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:30:57.177 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:30:57.178 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4226ms -2023-04-05 03:30:57.178 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:30:57.179 +00:00 [INF] HTTP POST / responded 200 in 27.8540 ms -2023-04-05 03:30:57.179 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7553ms -2023-04-05 03:31:03.210 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:03.211 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:03.211 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:03.237 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:03.238 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3846ms -2023-04-05 03:31:03.238 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:03.238 +00:00 [INF] HTTP POST / responded 200 in 27.4108 ms -2023-04-05 03:31:03.238 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0159ms -2023-04-05 03:31:07.276 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:07.276 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:07.276 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:07.302 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:07.303 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4085ms -2023-04-05 03:31:07.303 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:07.303 +00:00 [INF] HTTP POST / responded 200 in 27.4829 ms -2023-04-05 03:31:07.304 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1351ms -2023-04-05 03:31:13.353 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:13.354 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:13.354 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:13.380 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:13.380 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.239ms -2023-04-05 03:31:13.381 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:13.381 +00:00 [INF] HTTP POST / responded 200 in 27.2788 ms -2023-04-05 03:31:13.381 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8239ms -2023-04-05 03:31:17.443 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:17.444 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:17.444 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:17.470 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:17.471 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2726ms -2023-04-05 03:31:17.471 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:17.471 +00:00 [INF] HTTP POST / responded 200 in 27.5195 ms -2023-04-05 03:31:17.472 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1111ms -2023-04-05 03:31:21.541 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:21.542 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:21.542 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:21.568 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:21.569 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4008ms -2023-04-05 03:31:21.569 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:21.569 +00:00 [INF] HTTP POST / responded 200 in 27.5446 ms -2023-04-05 03:31:21.570 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3284ms -2023-04-05 03:31:27.611 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:27.611 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:27.611 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:27.637 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:27.638 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4561ms -2023-04-05 03:31:27.638 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:27.638 +00:00 [INF] HTTP POST / responded 200 in 27.5882 ms -2023-04-05 03:31:27.639 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2609ms -2023-04-05 03:31:31.679 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:31.679 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:31.680 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:31.706 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:31.706 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4651ms -2023-04-05 03:31:31.707 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:31.707 +00:00 [INF] HTTP POST / responded 200 in 27.6440 ms -2023-04-05 03:31:31.707 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2708ms -2023-04-05 03:31:37.763 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:37.763 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:37.763 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:37.790 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:37.790 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2958ms -2023-04-05 03:31:37.790 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:37.790 +00:00 [INF] HTTP POST / responded 200 in 27.2652 ms -2023-04-05 03:31:37.791 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8299ms -2023-04-05 03:31:41.826 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:41.827 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:41.827 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:41.854 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:41.854 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8423ms -2023-04-05 03:31:41.855 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:41.855 +00:00 [INF] HTTP POST / responded 200 in 28.3866 ms -2023-04-05 03:31:41.855 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2393ms -2023-04-05 03:31:47.911 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:47.911 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:47.912 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:47.938 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:47.939 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8127ms -2023-04-05 03:31:47.939 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:47.939 +00:00 [INF] HTTP POST / responded 200 in 27.8947 ms -2023-04-05 03:31:47.939 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7788ms -2023-04-05 03:31:51.968 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:31:51.968 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:51.969 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:51.995 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:51.996 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.987ms -2023-04-05 03:31:51.996 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:51.997 +00:00 [INF] HTTP POST / responded 200 in 28.3922 ms -2023-04-05 03:31:51.997 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1230ms -2023-04-05 03:31:58.041 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:31:58.041 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:58.041 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:31:58.068 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:31:58.069 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9342ms -2023-04-05 03:31:58.069 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:31:58.069 +00:00 [INF] HTTP POST / responded 200 in 28.2275 ms -2023-04-05 03:31:58.070 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.8746ms -2023-04-05 03:32:02.113 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:02.114 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:02.114 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:02.140 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:02.140 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2342ms -2023-04-05 03:32:02.141 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:02.141 +00:00 [INF] HTTP POST / responded 200 in 27.3233 ms -2023-04-05 03:32:02.141 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0160ms -2023-04-05 03:32:08.185 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:08.186 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:08.186 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:08.212 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:08.213 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5035ms -2023-04-05 03:32:08.213 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:08.213 +00:00 [INF] HTTP POST / responded 200 in 27.6841 ms -2023-04-05 03:32:08.213 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4156ms -2023-04-05 03:32:12.263 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:12.263 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:12.264 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:12.290 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:12.290 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3054ms -2023-04-05 03:32:12.291 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:12.291 +00:00 [INF] HTTP POST / responded 200 in 27.4027 ms -2023-04-05 03:32:12.291 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9795ms -2023-04-05 03:32:18.355 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:18.356 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:18.356 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:18.382 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:18.382 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3032ms -2023-04-05 03:32:18.383 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:18.383 +00:00 [INF] HTTP POST / responded 200 in 27.4465 ms -2023-04-05 03:32:18.383 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1684ms -2023-04-05 03:32:22.423 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:22.423 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:22.424 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:22.450 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:22.450 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5569ms -2023-04-05 03:32:22.451 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:22.451 +00:00 [INF] HTTP POST / responded 200 in 27.6574 ms -2023-04-05 03:32:22.451 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2505ms -2023-04-05 03:32:28.489 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:28.489 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:28.490 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:28.516 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:28.516 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3018ms -2023-04-05 03:32:28.517 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:28.517 +00:00 [INF] HTTP POST / responded 200 in 27.5937 ms -2023-04-05 03:32:28.517 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2833ms -2023-04-05 03:32:32.557 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:32.558 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:32.558 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:32.585 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:32.585 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5228ms -2023-04-05 03:32:32.586 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:32.586 +00:00 [INF] HTTP POST / responded 200 in 27.8190 ms -2023-04-05 03:32:32.586 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6464ms -2023-04-05 03:32:38.651 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:38.652 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:38.652 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:38.678 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:38.678 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3384ms -2023-04-05 03:32:38.679 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:38.679 +00:00 [INF] HTTP POST / responded 200 in 27.4746 ms -2023-04-05 03:32:38.679 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0925ms -2023-04-05 03:32:42.723 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:42.724 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:42.725 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:42.752 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:42.752 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.9175ms -2023-04-05 03:32:42.752 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:42.752 +00:00 [INF] HTTP POST / responded 200 in 28.4626 ms -2023-04-05 03:32:42.753 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2895ms -2023-04-05 03:32:48.813 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:48.814 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:48.814 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:48.840 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:48.841 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.543ms -2023-04-05 03:32:48.841 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:48.841 +00:00 [INF] HTTP POST / responded 200 in 27.8496 ms -2023-04-05 03:32:48.842 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7357ms -2023-04-05 03:32:52.898 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:52.899 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:52.899 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:52.925 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:52.926 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8743ms -2023-04-05 03:32:52.927 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:52.927 +00:00 [INF] HTTP POST / responded 200 in 28.8070 ms -2023-04-05 03:32:52.928 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.0105ms -2023-04-05 03:32:56.976 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:32:56.977 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:56.978 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:32:57.004 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:32:57.004 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1919ms -2023-04-05 03:32:57.005 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:32:57.005 +00:00 [INF] HTTP POST / responded 200 in 27.4976 ms -2023-04-05 03:32:57.005 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8909ms -2023-04-05 03:33:03.045 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:03.045 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:03.045 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:03.071 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:03.072 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4063ms -2023-04-05 03:33:03.072 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:03.072 +00:00 [INF] HTTP POST / responded 200 in 27.4235 ms -2023-04-05 03:33:03.073 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0972ms -2023-04-05 03:33:07.114 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:07.115 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:07.115 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:07.141 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:07.142 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4826ms -2023-04-05 03:33:07.142 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:07.143 +00:00 [INF] HTTP POST / responded 200 in 28.2186 ms -2023-04-05 03:33:07.143 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2689ms -2023-04-05 03:33:13.201 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:13.201 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:13.202 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:13.228 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:13.228 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5091ms -2023-04-05 03:33:13.229 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:13.229 +00:00 [INF] HTTP POST / responded 200 in 27.7368 ms -2023-04-05 03:33:13.229 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4174ms -2023-04-05 03:33:17.279 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:17.279 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:17.280 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:17.306 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:17.307 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5493ms -2023-04-05 03:33:17.307 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:17.307 +00:00 [INF] HTTP POST / responded 200 in 27.6615 ms -2023-04-05 03:33:17.307 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2819ms -2023-04-05 03:33:23.350 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:23.350 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:23.350 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:23.377 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:23.377 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4735ms -2023-04-05 03:33:23.377 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:23.378 +00:00 [INF] HTTP POST / responded 200 in 27.6433 ms -2023-04-05 03:33:23.378 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3898ms -2023-04-05 03:33:27.408 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:27.408 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:27.409 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:27.435 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:27.436 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5498ms -2023-04-05 03:33:27.436 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:27.437 +00:00 [INF] HTTP POST / responded 200 in 28.1322 ms -2023-04-05 03:33:27.437 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0536ms -2023-04-05 03:33:33.480 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:33.480 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:33.481 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:33.507 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:33.507 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.181ms -2023-04-05 03:33:33.507 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:33.507 +00:00 [INF] HTTP POST / responded 200 in 27.0530 ms -2023-04-05 03:33:33.508 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.6145ms -2023-04-05 03:33:37.547 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:37.547 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:37.547 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:37.573 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:37.574 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2144ms -2023-04-05 03:33:37.574 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:37.574 +00:00 [INF] HTTP POST / responded 200 in 27.3787 ms -2023-04-05 03:33:37.575 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9991ms -2023-04-05 03:33:43.625 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:43.625 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:43.626 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:43.652 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:43.652 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6732ms -2023-04-05 03:33:43.653 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:43.653 +00:00 [INF] HTTP POST / responded 200 in 27.9574 ms -2023-04-05 03:33:43.653 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7471ms -2023-04-05 03:33:47.687 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:47.687 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:47.687 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:47.714 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:47.714 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2358ms -2023-04-05 03:33:47.714 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:47.714 +00:00 [INF] HTTP POST / responded 200 in 27.3741 ms -2023-04-05 03:33:47.715 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2224ms -2023-04-05 03:33:53.762 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:53.762 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:53.762 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:53.788 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:53.789 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2623ms -2023-04-05 03:33:53.789 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:53.789 +00:00 [INF] HTTP POST / responded 200 in 27.2953 ms -2023-04-05 03:33:53.789 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9453ms -2023-04-05 03:33:57.830 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:33:57.830 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:57.830 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:33:57.856 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:33:57.857 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2888ms -2023-04-05 03:33:57.857 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:33:57.857 +00:00 [INF] HTTP POST / responded 200 in 27.2661 ms -2023-04-05 03:33:57.858 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8714ms -2023-04-05 03:34:03.919 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:03.920 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:03.920 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:03.946 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:03.947 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2761ms -2023-04-05 03:34:03.947 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:03.947 +00:00 [INF] HTTP POST / responded 200 in 27.3858 ms -2023-04-05 03:34:03.947 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0252ms -2023-04-05 03:34:07.974 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:07.975 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:07.975 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:08.002 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:08.002 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3331ms -2023-04-05 03:34:08.002 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:08.003 +00:00 [INF] HTTP POST / responded 200 in 27.5806 ms -2023-04-05 03:34:08.003 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2983ms -2023-04-05 03:34:14.078 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:14.078 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:14.078 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:14.104 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:14.105 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2885ms -2023-04-05 03:34:14.105 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:14.105 +00:00 [INF] HTTP POST / responded 200 in 27.2970 ms -2023-04-05 03:34:14.106 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9156ms -2023-04-05 03:34:18.151 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:18.151 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:18.151 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:18.178 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:18.178 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.23ms -2023-04-05 03:34:18.178 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:18.178 +00:00 [INF] HTTP POST / responded 200 in 27.2950 ms -2023-04-05 03:34:18.179 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9289ms -2023-04-05 03:34:24.238 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:24.239 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:24.239 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:24.265 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:24.266 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3741ms -2023-04-05 03:34:24.266 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:24.266 +00:00 [INF] HTTP POST / responded 200 in 27.4518 ms -2023-04-05 03:34:24.266 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0962ms -2023-04-05 03:34:28.293 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:28.293 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:28.293 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:28.319 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:28.320 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2292ms -2023-04-05 03:34:28.320 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:28.320 +00:00 [INF] HTTP POST / responded 200 in 27.3249 ms -2023-04-05 03:34:28.320 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9206ms -2023-04-05 03:34:34.376 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:34.377 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:34.377 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:34.403 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:34.404 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3744ms -2023-04-05 03:34:34.404 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:34.404 +00:00 [INF] HTTP POST / responded 200 in 27.5041 ms -2023-04-05 03:34:34.404 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1276ms -2023-04-05 03:34:38.456 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:38.456 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:38.456 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:38.483 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:38.483 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3191ms -2023-04-05 03:34:38.484 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:38.485 +00:00 [INF] HTTP POST / responded 200 in 28.4756 ms -2023-04-05 03:34:38.486 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.0197ms -2023-04-05 03:34:42.545 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:42.545 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:42.546 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:42.572 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:42.572 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3427ms -2023-04-05 03:34:42.572 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:42.573 +00:00 [INF] HTTP POST / responded 200 in 27.4528 ms -2023-04-05 03:34:42.573 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0919ms -2023-04-05 03:34:48.617 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:34:48.618 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:48.618 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:48.644 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:48.645 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2511ms -2023-04-05 03:34:48.645 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:48.645 +00:00 [INF] HTTP POST / responded 200 in 27.2934 ms -2023-04-05 03:34:48.645 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8793ms -2023-04-05 03:34:52.684 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:34:52.684 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:52.684 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:52.711 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:52.711 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4479ms -2023-04-05 03:34:52.711 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:52.712 +00:00 [INF] HTTP POST / responded 200 in 27.5414 ms -2023-04-05 03:34:52.712 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2579ms -2023-04-05 03:34:58.771 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:34:58.771 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:58.772 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:34:58.798 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:34:58.798 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3548ms -2023-04-05 03:34:58.798 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:34:58.799 +00:00 [INF] HTTP POST / responded 200 in 27.4327 ms -2023-04-05 03:34:58.799 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.1127ms -2023-04-05 03:35:02.855 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:02.855 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:02.855 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:02.881 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:02.882 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4433ms -2023-04-05 03:35:02.882 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:02.883 +00:00 [INF] HTTP POST / responded 200 in 27.5830 ms -2023-04-05 03:35:02.883 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2452ms -2023-04-05 03:35:08.947 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:08.947 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:08.947 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:08.974 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:08.974 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2398ms -2023-04-05 03:35:08.974 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:08.974 +00:00 [INF] HTTP POST / responded 200 in 27.3693 ms -2023-04-05 03:35:08.975 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0372ms -2023-04-05 03:35:13.039 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:13.039 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:13.040 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:13.066 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:13.066 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.276ms -2023-04-05 03:35:13.066 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:13.067 +00:00 [INF] HTTP POST / responded 200 in 27.5796 ms -2023-04-05 03:35:13.067 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2650ms -2023-04-05 03:35:19.118 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:19.118 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:19.119 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:19.145 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:19.145 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3525ms -2023-04-05 03:35:19.145 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:19.146 +00:00 [INF] HTTP POST / responded 200 in 27.4130 ms -2023-04-05 03:35:19.146 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0488ms -2023-04-05 03:35:23.215 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:35:23.216 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:23.217 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:23.243 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:23.244 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7833ms -2023-04-05 03:35:23.244 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:23.244 +00:00 [INF] HTTP POST / responded 200 in 28.6197 ms -2023-04-05 03:35:23.245 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 29.7806ms -2023-04-05 03:35:29.278 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:29.278 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:29.278 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:29.305 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:29.305 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2666ms -2023-04-05 03:35:29.305 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:29.306 +00:00 [INF] HTTP POST / responded 200 in 27.5102 ms -2023-04-05 03:35:29.306 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5471ms -2023-04-05 03:35:33.348 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:33.349 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:33.350 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:33.377 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:33.377 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5651ms -2023-04-05 03:35:33.378 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:33.378 +00:00 [INF] HTTP POST / responded 200 in 28.8755 ms -2023-04-05 03:35:33.379 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.2488ms -2023-04-05 03:35:39.434 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:39.434 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:39.435 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:39.461 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:39.462 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6376ms -2023-04-05 03:35:39.462 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:39.462 +00:00 [INF] HTTP POST / responded 200 in 28.0876 ms -2023-04-05 03:35:39.463 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.0514ms -2023-04-05 03:35:43.518 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:43.519 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:43.519 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:43.545 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:43.545 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1874ms -2023-04-05 03:35:43.545 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:43.546 +00:00 [INF] HTTP POST / responded 200 in 27.0796 ms -2023-04-05 03:35:43.546 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.6596ms -2023-04-05 03:35:49.595 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:49.596 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:49.596 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:49.622 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:49.622 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2611ms -2023-04-05 03:35:49.623 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:49.623 +00:00 [INF] HTTP POST / responded 200 in 27.2877 ms -2023-04-05 03:35:49.623 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9473ms -2023-04-05 03:35:53.655 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:35:53.655 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:53.655 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:53.681 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:53.682 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2238ms -2023-04-05 03:35:53.682 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:53.682 +00:00 [INF] HTTP POST / responded 200 in 27.2817 ms -2023-04-05 03:35:53.683 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9123ms -2023-04-05 03:35:59.749 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2666 -2023-04-05 03:35:59.750 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:59.750 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:35:59.776 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:35:59.777 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4637ms -2023-04-05 03:35:59.777 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:35:59.777 +00:00 [INF] HTTP POST / responded 200 in 27.5587 ms -2023-04-05 03:35:59.778 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2666 - 200 0 - 28.2390ms -2023-04-05 03:36:03.820 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:03.820 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:03.821 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:03.847 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:03.847 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2699ms -2023-04-05 03:36:03.848 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:03.848 +00:00 [INF] HTTP POST / responded 200 in 27.6094 ms -2023-04-05 03:36:03.848 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4494ms -2023-04-05 03:36:07.891 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:07.892 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:07.892 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:07.919 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:07.919 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8775ms -2023-04-05 03:36:07.920 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:07.920 +00:00 [INF] HTTP POST / responded 200 in 28.2903 ms -2023-04-05 03:36:07.920 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1079ms -2023-04-05 03:36:13.991 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:13.992 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:13.992 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:14.018 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:14.019 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5316ms -2023-04-05 03:36:14.020 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:14.020 +00:00 [INF] HTTP POST / responded 200 in 28.3976 ms -2023-04-05 03:36:14.021 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.3546ms -2023-04-05 03:36:18.069 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:18.070 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:18.070 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:18.096 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:18.097 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3894ms -2023-04-05 03:36:18.097 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:18.097 +00:00 [INF] HTTP POST / responded 200 in 27.6429 ms -2023-04-05 03:36:18.098 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3607ms -2023-04-05 03:36:24.164 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:24.165 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:24.165 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:24.191 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:24.192 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3813ms -2023-04-05 03:36:24.192 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:24.193 +00:00 [INF] HTTP POST / responded 200 in 28.1562 ms -2023-04-05 03:36:24.194 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2709ms -2023-04-05 03:36:28.238 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:28.239 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:28.240 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:28.266 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:28.266 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2993ms -2023-04-05 03:36:28.266 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:28.267 +00:00 [INF] HTTP POST / responded 200 in 27.5496 ms -2023-04-05 03:36:28.267 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5127ms -2023-04-05 03:36:34.307 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:34.308 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:34.308 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:34.334 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:34.335 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4433ms -2023-04-05 03:36:34.335 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:34.335 +00:00 [INF] HTTP POST / responded 200 in 27.6671 ms -2023-04-05 03:36:34.336 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3869ms -2023-04-05 03:36:38.384 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:38.385 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:38.385 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:38.411 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:38.412 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2924ms -2023-04-05 03:36:38.412 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:38.412 +00:00 [INF] HTTP POST / responded 200 in 27.6031 ms -2023-04-05 03:36:38.413 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6107ms -2023-04-05 03:36:44.469 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:44.470 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:44.470 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:44.497 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:44.497 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6931ms -2023-04-05 03:36:44.498 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:44.498 +00:00 [INF] HTTP POST / responded 200 in 28.0246 ms -2023-04-05 03:36:44.498 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8023ms -2023-04-05 03:36:48.542 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:48.543 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:48.543 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:48.570 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:48.570 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3034ms -2023-04-05 03:36:48.570 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:48.570 +00:00 [INF] HTTP POST / responded 200 in 27.3363 ms -2023-04-05 03:36:48.571 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2434ms -2023-04-05 03:36:54.637 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:54.637 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:54.637 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:54.664 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:54.664 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3024ms -2023-04-05 03:36:54.664 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:54.664 +00:00 [INF] HTTP POST / responded 200 in 27.4014 ms -2023-04-05 03:36:54.665 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0403ms -2023-04-05 03:36:58.708 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:36:58.708 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:58.709 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:36:58.735 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:36:58.735 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4719ms -2023-04-05 03:36:58.736 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:36:58.736 +00:00 [INF] HTTP POST / responded 200 in 27.7509 ms -2023-04-05 03:36:58.736 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6939ms -2023-04-05 03:37:04.787 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:04.788 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:04.788 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:04.814 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:04.814 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4027ms -2023-04-05 03:37:04.815 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:04.815 +00:00 [INF] HTTP POST / responded 200 in 27.5271 ms -2023-04-05 03:37:04.815 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1775ms -2023-04-05 03:37:08.853 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:08.853 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:08.853 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:08.880 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:08.880 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2401ms -2023-04-05 03:37:08.880 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:08.880 +00:00 [INF] HTTP POST / responded 200 in 27.2538 ms -2023-04-05 03:37:08.881 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8804ms -2023-04-05 03:37:14.921 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:14.922 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:14.922 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:14.948 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:14.949 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4692ms -2023-04-05 03:37:14.949 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:14.949 +00:00 [INF] HTTP POST / responded 200 in 27.7121 ms -2023-04-05 03:37:14.950 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5800ms -2023-04-05 03:37:18.992 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:18.992 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:18.993 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:19.019 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:19.019 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.346ms -2023-04-05 03:37:19.019 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:19.020 +00:00 [INF] HTTP POST / responded 200 in 27.5509 ms -2023-04-05 03:37:19.020 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2208ms -2023-04-05 03:37:25.091 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:25.092 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:25.092 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:25.119 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:25.119 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5245ms -2023-04-05 03:37:25.119 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:25.120 +00:00 [INF] HTTP POST / responded 200 in 27.8891 ms -2023-04-05 03:37:25.120 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6410ms -2023-04-05 03:37:29.154 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:29.154 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:29.155 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:29.181 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:29.182 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5148ms -2023-04-05 03:37:29.182 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:29.182 +00:00 [INF] HTTP POST / responded 200 in 27.7405 ms -2023-04-05 03:37:29.182 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5183ms -2023-04-05 03:37:35.234 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:35.241 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:35.241 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:35.268 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:35.268 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5479ms -2023-04-05 03:37:35.268 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:35.269 +00:00 [INF] HTTP POST / responded 200 in 27.6895 ms -2023-04-05 03:37:35.269 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 35.0171ms -2023-04-05 03:37:39.307 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:39.307 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:39.307 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:39.334 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:39.334 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4266ms -2023-04-05 03:37:39.335 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:39.335 +00:00 [INF] HTTP POST / responded 200 in 27.7130 ms -2023-04-05 03:37:39.335 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3238ms -2023-04-05 03:37:43.388 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:43.389 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:43.390 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:43.416 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:43.417 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4766ms -2023-04-05 03:37:43.417 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:43.417 +00:00 [INF] HTTP POST / responded 200 in 27.9915 ms -2023-04-05 03:37:43.417 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8593ms -2023-04-05 03:37:49.455 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:49.456 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:49.456 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:49.482 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:49.483 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3934ms -2023-04-05 03:37:49.483 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:49.483 +00:00 [INF] HTTP POST / responded 200 in 27.4110 ms -2023-04-05 03:37:49.483 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0502ms -2023-04-05 03:37:53.534 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:53.535 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:53.535 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:53.561 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:53.561 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2971ms -2023-04-05 03:37:53.562 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:53.562 +00:00 [INF] HTTP POST / responded 200 in 27.2686 ms -2023-04-05 03:37:53.562 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8694ms -2023-04-05 03:37:59.617 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:37:59.618 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:59.619 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:37:59.645 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:37:59.645 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4728ms -2023-04-05 03:37:59.646 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:37:59.646 +00:00 [INF] HTTP POST / responded 200 in 27.9907 ms -2023-04-05 03:37:59.646 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1370ms -2023-04-05 03:38:03.692 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:03.693 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:03.694 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:03.720 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:03.721 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4794ms -2023-04-05 03:38:03.721 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:03.722 +00:00 [INF] HTTP POST / responded 200 in 28.4157 ms -2023-04-05 03:38:03.722 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.1501ms -2023-04-05 03:38:09.760 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:09.761 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:09.761 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:09.788 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:09.788 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8116ms -2023-04-05 03:38:09.789 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:09.789 +00:00 [INF] HTTP POST / responded 200 in 27.9575 ms -2023-04-05 03:38:09.789 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8475ms -2023-04-05 03:38:13.850 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:13.851 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:13.851 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:13.877 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:13.878 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6245ms -2023-04-05 03:38:13.878 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:13.878 +00:00 [INF] HTTP POST / responded 200 in 27.9770 ms -2023-04-05 03:38:13.879 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6883ms -2023-04-05 03:38:19.952 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:19.953 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:19.953 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:19.980 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:19.980 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4624ms -2023-04-05 03:38:19.980 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:19.981 +00:00 [INF] HTTP POST / responded 200 in 27.6472 ms -2023-04-05 03:38:19.981 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6144ms -2023-04-05 03:38:24.054 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:24.055 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:24.056 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:24.082 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:24.083 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4935ms -2023-04-05 03:38:24.083 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:24.083 +00:00 [INF] HTTP POST / responded 200 in 28.0620 ms -2023-04-05 03:38:24.084 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.4368ms -2023-04-05 03:38:30.129 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:30.130 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:30.130 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:30.156 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:30.157 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4451ms -2023-04-05 03:38:30.157 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:30.157 +00:00 [INF] HTTP POST / responded 200 in 27.9050 ms -2023-04-05 03:38:30.158 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6074ms -2023-04-05 03:38:34.201 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:34.201 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:34.201 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:34.228 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:34.228 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3715ms -2023-04-05 03:38:34.228 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:34.229 +00:00 [INF] HTTP POST / responded 200 in 27.3744 ms -2023-04-05 03:38:34.229 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9899ms -2023-04-05 03:38:40.289 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:40.289 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:40.289 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:40.316 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:40.317 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.09ms -2023-04-05 03:38:40.317 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:40.318 +00:00 [INF] HTTP POST / responded 200 in 29.0180 ms -2023-04-05 03:38:40.319 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.1085ms -2023-04-05 03:38:44.358 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:44.358 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:44.359 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:44.385 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:44.385 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2764ms -2023-04-05 03:38:44.385 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:44.386 +00:00 [INF] HTTP POST / responded 200 in 27.2901 ms -2023-04-05 03:38:44.386 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9128ms -2023-04-05 03:38:50.450 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:50.451 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:50.451 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:50.477 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:50.478 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5463ms -2023-04-05 03:38:50.478 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:50.478 +00:00 [INF] HTTP POST / responded 200 in 27.5622 ms -2023-04-05 03:38:50.479 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3988ms -2023-04-05 03:38:54.541 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:38:54.542 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:54.542 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:38:54.568 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:38:54.569 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4244ms -2023-04-05 03:38:54.569 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:38:54.569 +00:00 [INF] HTTP POST / responded 200 in 27.6845 ms -2023-04-05 03:38:54.570 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4392ms -2023-04-05 03:39:00.644 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:00.645 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:00.645 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:00.671 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:00.672 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2575ms -2023-04-05 03:39:00.672 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:00.672 +00:00 [INF] HTTP POST / responded 200 in 27.5202 ms -2023-04-05 03:39:00.673 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1534ms -2023-04-05 03:39:04.720 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:04.721 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:04.721 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:04.747 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:04.748 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3029ms -2023-04-05 03:39:04.748 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:04.748 +00:00 [INF] HTTP POST / responded 200 in 27.6074 ms -2023-04-05 03:39:04.749 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2980ms -2023-04-05 03:39:08.784 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:08.784 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:08.785 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:08.811 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:08.811 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4484ms -2023-04-05 03:39:08.811 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:08.812 +00:00 [INF] HTTP POST / responded 200 in 27.5470 ms -2023-04-05 03:39:08.812 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2049ms -2023-04-05 03:39:14.875 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:14.876 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:14.876 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:14.902 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:14.902 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2888ms -2023-04-05 03:39:14.902 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:14.903 +00:00 [INF] HTTP POST / responded 200 in 27.3067 ms -2023-04-05 03:39:14.903 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9570ms -2023-04-05 03:39:18.928 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:18.928 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:18.929 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:18.955 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:18.956 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4801ms -2023-04-05 03:39:18.956 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:18.956 +00:00 [INF] HTTP POST / responded 200 in 27.7647 ms -2023-04-05 03:39:18.957 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.5772ms -2023-04-05 03:39:25.034 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:25.035 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:25.035 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:25.061 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:25.062 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.714ms -2023-04-05 03:39:25.063 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:25.063 +00:00 [INF] HTTP POST / responded 200 in 28.2950 ms -2023-04-05 03:39:25.063 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.1818ms -2023-04-05 03:39:29.091 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:29.091 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:29.092 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:29.118 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:29.118 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3524ms -2023-04-05 03:39:29.119 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:29.119 +00:00 [INF] HTTP POST / responded 200 in 27.5150 ms -2023-04-05 03:39:29.119 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1815ms -2023-04-05 03:39:35.206 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:35.206 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:35.206 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:35.233 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:35.233 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2732ms -2023-04-05 03:39:35.233 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:35.234 +00:00 [INF] HTTP POST / responded 200 in 27.3669 ms -2023-04-05 03:39:35.234 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0726ms -2023-04-05 03:39:39.278 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:39.279 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:39.279 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:39.305 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:39.306 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2629ms -2023-04-05 03:39:39.306 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:39.306 +00:00 [INF] HTTP POST / responded 200 in 27.4662 ms -2023-04-05 03:39:39.306 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.1498ms -2023-04-05 03:39:45.363 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:45.364 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:45.364 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:45.390 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:45.391 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4323ms -2023-04-05 03:39:45.391 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:45.391 +00:00 [INF] HTTP POST / responded 200 in 27.6883 ms -2023-04-05 03:39:45.392 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.3330ms -2023-04-05 03:39:49.428 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:49.429 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:49.429 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:49.455 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:49.455 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2116ms -2023-04-05 03:39:49.456 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:49.456 +00:00 [INF] HTTP POST / responded 200 in 27.4008 ms -2023-04-05 03:39:49.456 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2851ms -2023-04-05 03:39:55.510 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:55.510 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:55.511 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:55.537 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:55.537 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3087ms -2023-04-05 03:39:55.537 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:55.538 +00:00 [INF] HTTP POST / responded 200 in 27.3690 ms -2023-04-05 03:39:55.538 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9758ms -2023-04-05 03:39:59.579 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:39:59.580 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:59.580 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:39:59.607 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:39:59.607 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4164ms -2023-04-05 03:39:59.607 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:39:59.608 +00:00 [INF] HTTP POST / responded 200 in 27.8915 ms -2023-04-05 03:39:59.608 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4690ms -2023-04-05 03:40:05.676 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:05.676 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:05.677 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:05.703 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:05.703 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4365ms -2023-04-05 03:40:05.704 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:05.704 +00:00 [INF] HTTP POST / responded 200 in 27.7393 ms -2023-04-05 03:40:05.704 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.4569ms -2023-04-05 03:40:09.754 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:09.754 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:09.754 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:09.780 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:09.781 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.1738ms -2023-04-05 03:40:09.781 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:09.781 +00:00 [INF] HTTP POST / responded 200 in 27.4416 ms -2023-04-05 03:40:09.782 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2503ms -2023-04-05 03:40:15.828 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:15.828 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:15.828 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:15.854 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:15.855 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4468ms -2023-04-05 03:40:15.856 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:15.856 +00:00 [INF] HTTP POST / responded 200 in 28.2794 ms -2023-04-05 03:40:15.857 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 29.2721ms -2023-04-05 03:40:19.907 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:19.908 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:19.908 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:19.934 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:19.934 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.4125ms -2023-04-05 03:40:19.935 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:19.935 +00:00 [INF] HTTP POST / responded 200 in 27.5672 ms -2023-04-05 03:40:19.935 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.2519ms -2023-04-05 03:40:25.986 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:25.987 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:25.987 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:26.013 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:26.014 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.303ms -2023-04-05 03:40:26.014 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:26.014 +00:00 [INF] HTTP POST / responded 200 in 27.2315 ms -2023-04-05 03:40:26.014 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.7875ms -2023-04-05 03:40:30.063 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:30.063 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:30.063 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:30.089 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:30.090 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2308ms -2023-04-05 03:40:30.090 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:30.090 +00:00 [INF] HTTP POST / responded 200 in 27.2213 ms -2023-04-05 03:40:30.090 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8366ms -2023-04-05 03:40:34.124 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:34.124 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:34.125 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:34.151 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:34.152 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.5084ms -2023-04-05 03:40:34.152 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:34.152 +00:00 [INF] HTTP POST / responded 200 in 27.9108 ms -2023-04-05 03:40:34.152 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8404ms -2023-04-05 03:40:40.210 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:40.211 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:40.211 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:40.237 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:40.238 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.3185ms -2023-04-05 03:40:40.238 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:40.238 +00:00 [INF] HTTP POST / responded 200 in 27.3610 ms -2023-04-05 03:40:40.238 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.9703ms -2023-04-05 03:40:44.264 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:44.264 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:44.264 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:44.290 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:44.291 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2343ms -2023-04-05 03:40:44.291 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:44.291 +00:00 [INF] HTTP POST / responded 200 in 27.2918 ms -2023-04-05 03:40:44.292 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 27.8483ms -2023-04-05 03:40:50.343 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 03:40:50.344 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:50.344 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 03:40:50.370 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 03:40:50.371 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.2822ms -2023-04-05 03:40:50.371 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 03:40:50.371 +00:00 [INF] HTTP POST / responded 200 in 27.2663 ms -2023-04-05 03:40:50.371 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.0916ms -2023-04-05 03:40:51.846 +00:00 [INF] Application is shutting down... -2023-04-05 03:40:51.854 +00:00 [INF] 806d5o7J8D-XPnjtY0neXg has disconnected: -2023-04-05 03:40:51.854 +00:00 [INF] rB6NvWZAnF2yzF5Pxf2cHA has disconnected: -2023-04-05 03:40:51.860 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:40:51.861 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 03:40:51.862 +00:00 [INF] HTTP GET /hub responded 101 in 1997535.5884 ms -2023-04-05 03:40:51.862 +00:00 [INF] HTTP GET /hub responded 101 in 1999486.5223 ms -2023-04-05 03:40:51.862 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=pBuEAzhm-G8SfxKCbqs7rA - - - 101 - - 1997536.3622ms -2023-04-05 03:40:51.863 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=3o-PdafqjM-qaD5J9SJvEg - - - 101 - - 1999487.5364ms -2023-04-05 06:23:27.193 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 06:23:27.233 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 06:23:27.249 +00:00 [INF] Loading proxy data from config. -2023-04-05 06:23:27.377 +00:00 [INF] Creating key {f6e85fac-e95b-4a32-9ee5-56130a2dbdd8} with creation date 2023-04-05 06:23:27Z, activation date 2023-04-05 06:23:27Z, and expiration date 2023-07-04 06:23:27Z. -2023-04-05 06:23:27.389 +00:00 [WRN] No XML encryptor configured. Key {f6e85fac-e95b-4a32-9ee5-56130a2dbdd8} may be persisted to storage in unencrypted form. -2023-04-05 06:23:27.392 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-f6e85fac-e95b-4a32-9ee5-56130a2dbdd8.xml'. -2023-04-05 06:23:27.424 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 06:23:27.427 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 06:23:27.427 +00:00 [INF] Hosting environment: Production -2023-04-05 06:23:27.428 +00:00 [INF] Content root path: /app/ -2023-04-05 06:23:30.326 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:23:30.360 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:23:30.361 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:23:30.372 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:23:30.373 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 43.7618 ms -2023-04-05 06:23:30.374 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 50.7415ms -2023-04-05 06:23:30.378 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=5ZLxpZVWOGKMjbzX9MkCKw - - -2023-04-05 06:23:30.380 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:23:30.380 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:23:30.397 +00:00 [INF] X1p3Hlg37WaPG0Y6JnHmcA has connected -2023-04-05 06:24:06.964 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 06:24:06.967 +00:00 [INF] HTTP GET /settings//appsettings.json responded 404 in 3.1186 ms -2023-04-05 06:24:06.969 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 404 0 - 4.6617ms -2023-04-05 06:24:39.420 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 06:24:39.422 +00:00 [INF] HTTP GET /settings//appsettings.json responded 404 in 0.6919 ms -2023-04-05 06:24:39.422 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 404 0 - 1.7938ms -2023-04-05 06:25:25.527 +00:00 [INF] Application is shutting down... -2023-04-05 06:25:25.534 +00:00 [INF] X1p3Hlg37WaPG0Y6JnHmcA has disconnected: -2023-04-05 06:25:25.539 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:25:25.540 +00:00 [INF] HTTP GET /hub responded 101 in 115160.8665 ms -2023-04-05 06:25:25.540 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=5ZLxpZVWOGKMjbzX9MkCKw - - - 101 - - 115161.6665ms -2023-04-05 06:25:25.545 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:25:25.547 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:25:25.547 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:25:25.547 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:25:25.548 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.9733 ms -2023-04-05 06:25:25.548 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 2.5253ms -2023-04-05 06:25:27.921 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 06:25:27.967 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 06:25:27.984 +00:00 [INF] Loading proxy data from config. -2023-04-05 06:25:28.097 +00:00 [INF] Creating key {2df9ce28-9853-4ba0-b92d-47374f2adf3b} with creation date 2023-04-05 06:25:28Z, activation date 2023-04-05 06:25:28Z, and expiration date 2023-07-04 06:25:28Z. -2023-04-05 06:25:28.104 +00:00 [WRN] No XML encryptor configured. Key {2df9ce28-9853-4ba0-b92d-47374f2adf3b} may be persisted to storage in unencrypted form. -2023-04-05 06:25:28.106 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-2df9ce28-9853-4ba0-b92d-47374f2adf3b.xml'. -2023-04-05 06:25:28.126 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 06:25:28.128 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 06:25:28.128 +00:00 [INF] Hosting environment: Production -2023-04-05 06:25:28.128 +00:00 [INF] Content root path: /app/ -2023-04-05 06:25:31.325 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:25:31.365 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:25:31.368 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:25:31.378 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:25:31.379 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 51.4715 ms -2023-04-05 06:25:31.381 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 57.8473ms -2023-04-05 06:25:31.382 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=vd-KRy7lI0TCmoUBmeL0wA - - -2023-04-05 06:25:31.384 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:25:31.384 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:25:31.397 +00:00 [INF] np4TUkLNcKLWoNSJfoYi_A has connected -2023-04-05 06:25:48.732 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 06:25:48.742 +00:00 [INF] Sending file. Request path: '/settings//appsettings.json'. Physical path: '/app/wwwroot/settings/appsettings.json' -2023-04-05 06:25:48.743 +00:00 [INF] HTTP GET /settings//appsettings.json responded 200 in 10.8828 ms -2023-04-05 06:25:48.744 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 200 5128 application/json 12.1733ms -2023-04-05 06:25:48.854 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 06:25:48.859 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 06:25:48.859 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 5.0456 ms -2023-04-05 06:25:48.859 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 5.8578ms -2023-04-05 06:25:48.879 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 06:25:48.882 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 06:25:48.883 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 3.3418 ms -2023-04-05 06:25:48.883 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 3.9850ms -2023-04-05 06:25:55.009 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 65409 -2023-04-05 06:25:55.011 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:25:55.025 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:25:55.417 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:25:55.421 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 392.8616ms -2023-04-05 06:25:55.422 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:25:55.422 +00:00 [INF] HTTP POST / responded 200 in 412.7310 ms -2023-04-05 06:25:55.423 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 65409 - 200 0 - 414.2231ms -2023-04-05 06:25:57.452 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 82956 -2023-04-05 06:25:57.452 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:25:57.452 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:25:57.486 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:25:57.487 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 33.7808ms -2023-04-05 06:25:57.487 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:25:57.487 +00:00 [INF] HTTP POST / responded 200 in 35.1172 ms -2023-04-05 06:25:57.488 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 82956 - 200 0 - 36.4045ms -2023-04-05 06:25:59.521 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 144455 -2023-04-05 06:25:59.522 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:25:59.522 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:25:59.557 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:25:59.558 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 35.2843ms -2023-04-05 06:25:59.558 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:25:59.558 +00:00 [INF] HTTP POST / responded 200 in 36.6006 ms -2023-04-05 06:25:59.559 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 144455 - 200 0 - 38.2605ms -2023-04-05 06:26:01.581 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 5649 -2023-04-05 06:26:01.581 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:01.582 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:26:01.610 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:26:01.611 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 28.7796ms -2023-04-05 06:26:01.611 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:01.611 +00:00 [INF] HTTP POST / responded 200 in 29.9905 ms -2023-04-05 06:26:01.612 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 5649 - 200 0 - 30.7174ms -2023-04-05 06:26:05.642 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 41154 -2023-04-05 06:26:05.643 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:05.643 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:26:05.672 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:26:05.672 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 29.2715ms -2023-04-05 06:26:05.673 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:05.673 +00:00 [INF] HTTP POST / responded 200 in 30.5252 ms -2023-04-05 06:26:05.674 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 41154 - 200 0 - 31.7102ms -2023-04-05 06:26:09.705 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 06:26:09.705 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:09.705 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:26:09.732 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:26:09.732 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.7819ms -2023-04-05 06:26:09.733 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:09.733 +00:00 [INF] HTTP POST / responded 200 in 28.1430 ms -2023-04-05 06:26:09.733 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8372ms -2023-04-05 06:26:15.786 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 06:26:15.786 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:15.786 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:26:15.813 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:26:15.813 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.6304ms -2023-04-05 06:26:15.814 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:15.814 +00:00 [INF] HTTP POST / responded 200 in 27.9308 ms -2023-04-05 06:26:15.814 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.6273ms -2023-04-05 06:26:19.854 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 06:26:19.854 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:19.855 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:26:19.882 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:26:19.882 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.1688ms -2023-04-05 06:26:19.882 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:26:19.883 +00:00 [INF] HTTP POST / responded 200 in 28.2365 ms -2023-04-05 06:26:19.883 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.8516ms -2023-04-05 06:32:38.423 +00:00 [INF] Application is shutting down... -2023-04-05 06:32:38.430 +00:00 [INF] np4TUkLNcKLWoNSJfoYi_A has disconnected: -2023-04-05 06:32:38.436 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:32:38.437 +00:00 [INF] HTTP GET /hub responded 101 in 427054.4312 ms -2023-04-05 06:32:38.437 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=vd-KRy7lI0TCmoUBmeL0wA - - - 101 - - 427055.3015ms -2023-04-05 06:33:00.707 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 06:33:00.743 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 06:33:00.757 +00:00 [INF] Loading proxy data from config. -2023-04-05 06:33:00.881 +00:00 [INF] Creating key {bd84bce0-69d1-4a0b-b6fb-3c19b0a5f605} with creation date 2023-04-05 06:33:00Z, activation date 2023-04-05 06:33:00Z, and expiration date 2023-07-04 06:33:00Z. -2023-04-05 06:33:00.890 +00:00 [WRN] No XML encryptor configured. Key {bd84bce0-69d1-4a0b-b6fb-3c19b0a5f605} may be persisted to storage in unencrypted form. -2023-04-05 06:33:00.892 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-bd84bce0-69d1-4a0b-b6fb-3c19b0a5f605.xml'. -2023-04-05 06:33:00.912 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 06:33:00.913 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 06:33:00.914 +00:00 [INF] Hosting environment: Production -2023-04-05 06:33:00.914 +00:00 [INF] Content root path: /app/ -2023-04-05 06:33:06.323 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:33:06.360 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:33:06.362 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:33:06.374 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:33:06.376 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 49.4976 ms -2023-04-05 06:33:06.378 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 57.4167ms -2023-04-05 06:33:06.380 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=Pq0EMpOcGnrnnHzR1jcf0g - - -2023-04-05 06:33:06.382 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:33:06.382 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:33:06.396 +00:00 [INF] NwymRLaP7tVzbwAHNwNmlg has connected -2023-04-05 06:33:10.772 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 06:33:10.780 +00:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-04-05 06:33:10.783 +00:00 [INF] AuthenticationScheme: Cookies was challenged. -2023-04-05 06:33:10.783 +00:00 [INF] HTTP GET / responded 302 in 10.8907 ms -2023-04-05 06:33:10.784 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 302 0 - 12.2196ms -2023-04-05 06:33:10.797 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - -2023-04-05 06:33:10.798 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 06:33:10.812 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature Microsoft.AspNetCore.Mvc.IActionResult Login(System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 06:33:10.868 +00:00 [INF] Executing ViewResult, running view Login. -2023-04-05 06:33:10.925 +00:00 [INF] Executed ViewResult - view Login executed in 56.3534ms. -2023-04-05 06:33:10.926 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 113.0416ms -2023-04-05 06:33:10.926 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 06:33:10.926 +00:00 [INF] HTTP GET /Account/Login responded 200 in 128.4925 ms -2023-04-05 06:33:10.928 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/Account/Login?ReturnUrl=%2F - - - 200 - text/html;+charset=utf-8 130.9735ms -2023-04-05 06:33:17.457 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 -2023-04-05 06:33:17.459 +00:00 [INF] Executing endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 06:33:17.464 +00:00 [INF] Route matched with {action = "Login", controller = "Account"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Login(Web.Gateway.Models.LoginModel, System.String) on controller Web.Gateway.Controllers.AccountController (Web.Gateway). -2023-04-05 06:33:17.471 +00:00 [INF] AuthenticationScheme: Cookies signed in. -2023-04-05 06:33:17.472 +00:00 [INF] Executing LocalRedirectResult, redirecting to /. -2023-04-05 06:33:17.473 +00:00 [INF] Executed action Web.Gateway.Controllers.AccountController.Login (Web.Gateway) in 8.3699ms -2023-04-05 06:33:17.473 +00:00 [INF] Executed endpoint 'Web.Gateway.Controllers.AccountController.Login (Web.Gateway)' -2023-04-05 06:33:17.473 +00:00 [INF] HTTP POST /Account/Login responded 302 in 15.5372 ms -2023-04-05 06:33:17.474 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/Account/Login application/x-www-form-urlencoded 232 - 302 0 - 16.8398ms -2023-04-05 06:33:17.479 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/ - - -2023-04-05 06:33:17.480 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:17.487 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:33:17.511 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 06:33:17.512 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T00%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 06:33:17.546 +00:00 [INF] Received HTTP response headers after 30.7868ms - 200 -2023-04-05 06:33:17.546 +00:00 [INF] End processing HTTP request after 35.8298ms - 200 -2023-04-05 06:33:17.556 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 06:33:17.556 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 06:33:17.560 +00:00 [INF] Received HTTP response headers after 2.971ms - 200 -2023-04-05 06:33:17.560 +00:00 [INF] End processing HTTP request after 4.2618ms - 200 -2023-04-05 06:33:17.563 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 06:33:17.577 +00:00 [INF] Executed ViewResult - view Index executed in 15.3649ms. -2023-04-05 06:33:17.578 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 91.3473ms -2023-04-05 06:33:17.579 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:17.580 +00:00 [INF] HTTP GET / responded 200 in 100.7869 ms -2023-04-05 06:33:17.580 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/ - - - 200 - text/html;+charset=utf-8 101.5451ms -2023-04-05 06:33:17.628 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:33:17.629 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:33:17.630 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:33:17.630 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.6346 ms -2023-04-05 06:33:17.630 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 2.7171ms -2023-04-05 06:33:17.668 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=0_h8kh60brFrmBIab_VIIA - - -2023-04-05 06:33:17.669 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:33:17.673 +00:00 [INF] yjGYIX5Kmt-qznsshJ1Odw has connected -2023-04-05 06:33:22.308 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T00%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=100&enalbeTail=true - - -2023-04-05 06:33:22.309 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:22.310 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Web.Gateway.Models.QueryLogModel) on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:33:22.318 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 06:33:22.319 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=select %2A from log where time>%3D%272023-04-05T08%3A00%3A00.0000000Z%27 and time<%3D%272023-04-06T00%3A00%3A00.0000000Z%27 order by time desc limit 100 offset 0" -2023-04-05 06:33:22.321 +00:00 [INF] Received HTTP response headers after 2.2508ms - 200 -2023-04-05 06:33:22.322 +00:00 [INF] End processing HTTP request after 3.1618ms - 200 -2023-04-05 06:33:22.322 +00:00 [INF] Start processing HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 06:33:22.322 +00:00 [INF] Sending HTTP request GET "http://host.docker.internal:8086/query?db=logs&q=show tag values on logs with key%3DApplicationName" -2023-04-05 06:33:22.324 +00:00 [INF] Received HTTP response headers after 2.033ms - 200 -2023-04-05 06:33:22.325 +00:00 [INF] End processing HTTP request after 3.0067ms - 200 -2023-04-05 06:33:22.325 +00:00 [INF] Executing ViewResult, running view Index. -2023-04-05 06:33:22.326 +00:00 [INF] Executed ViewResult - view Index executed in 1.0008ms. -2023-04-05 06:33:22.327 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 16.7664ms -2023-04-05 06:33:22.327 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:22.327 +00:00 [INF] HTTP GET / responded 200 in 19.1875 ms -2023-04-05 06:33:22.327 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/?query=select+*+from+log+where+time%3E%3D%272023-04-05T00%3A00%3A00.0000000Z%27+and+time%3C%3D%272023-04-06T00%3A00%3A00.0000000Z%27+order+by+time+desc+limit+100+offset+0&applicationName=&level=&start=2023-04-05T08%3A00&end=2023-04-06T00%3A00%3A00.000Z&pageSize=100&enalbeTail=true - - - 200 - text/html;+charset=utf-8 19.9949ms -2023-04-05 06:33:22.381 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:33:22.382 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:33:22.383 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:33:22.383 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 1.1187 ms -2023-04-05 06:33:22.383 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 1.7987ms -2023-04-05 06:33:22.410 +00:00 [INF] yjGYIX5Kmt-qznsshJ1Odw has disconnected: -2023-04-05 06:33:22.418 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:33:22.418 +00:00 [INF] HTTP GET /hub responded 101 in 4749.9494 ms -2023-04-05 06:33:22.419 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=0_h8kh60brFrmBIab_VIIA - - - 101 - - 4750.6426ms -2023-04-05 06:33:22.424 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=Nu5pRIiod-3rwaJ0pMBiqg - - -2023-04-05 06:33:22.425 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:33:22.430 +00:00 [INF] Sg_Ja0fwRAvjab7IEdlhzA has connected -2023-04-05 06:33:48.131 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - -2023-04-05 06:33:48.142 +00:00 [INF] Sending file. Request path: '/settings//appsettings.json'. Physical path: '/app/wwwroot/settings/appsettings.json' -2023-04-05 06:33:48.142 +00:00 [INF] HTTP GET /settings//appsettings.json responded 200 in 10.6723 ms -2023-04-05 06:33:48.143 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.json - - - 200 5128 application/json 11.3346ms -2023-04-05 06:33:48.190 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 06:33:48.195 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 06:33:48.195 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 5.2661 ms -2023-04-05 06:33:48.196 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 6.0097ms -2023-04-05 06:33:48.220 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - -2023-04-05 06:33:48.224 +00:00 [INF] Sending file. Request path: '/settings//appsettings.Development.json'. Physical path: '/app/wwwroot/settings/appsettings.Development.json' -2023-04-05 06:33:48.224 +00:00 [INF] HTTP GET /settings//appsettings.Development.json responded 200 in 4.2230 ms -2023-04-05 06:33:48.225 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/settings//appsettings.Development.json - - - 200 7010 application/json 4.9782ms -2023-04-05 06:33:54.633 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 65409 -2023-04-05 06:33:54.634 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:54.636 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:33:55.078 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:33:55.079 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 442.2525ms -2023-04-05 06:33:55.079 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:55.079 +00:00 [INF] HTTP POST / responded 200 in 445.5923 ms -2023-04-05 06:33:55.080 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 65409 - 200 0 - 447.0210ms -2023-04-05 06:33:57.112 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 40875 -2023-04-05 06:33:57.114 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:57.116 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:33:57.214 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:33:57.214 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 97.5655ms -2023-04-05 06:33:57.214 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:57.215 +00:00 [INF] HTTP POST / responded 200 in 100.6705 ms -2023-04-05 06:33:57.215 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 40875 - 200 0 - 103.7993ms -2023-04-05 06:33:59.235 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 183054 -2023-04-05 06:33:59.236 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:59.236 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:33:59.301 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:33:59.302 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 64.7531ms -2023-04-05 06:33:59.302 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:33:59.302 +00:00 [INF] HTTP POST / responded 200 in 66.3301 ms -2023-04-05 06:33:59.303 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 183054 - 200 0 - 67.9243ms -2023-04-05 06:34:01.322 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 9129 -2023-04-05 06:34:01.323 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:01.323 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:34:01.355 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:34:01.355 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 31.51ms -2023-04-05 06:34:01.355 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:01.356 +00:00 [INF] HTTP POST / responded 200 in 33.0561 ms -2023-04-05 06:34:01.356 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 9129 - 200 0 - 33.8992ms -2023-04-05 06:34:05.391 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 11401 -2023-04-05 06:34:05.391 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:05.391 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:34:05.444 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:34:05.444 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 52.529ms -2023-04-05 06:34:05.444 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:05.445 +00:00 [INF] HTTP POST / responded 200 in 53.6603 ms -2023-04-05 06:34:05.445 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 11401 - 200 0 - 54.3251ms -2023-04-05 06:34:07.491 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 29751 -2023-04-05 06:34:07.491 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:07.492 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:34:07.546 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:34:07.546 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 53.8124ms -2023-04-05 06:34:07.547 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:07.547 +00:00 [INF] HTTP POST / responded 200 in 55.9529 ms -2023-04-05 06:34:07.547 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 29751 - 200 0 - 56.7239ms -2023-04-05 06:34:09.584 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 06:34:09.584 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:09.585 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:34:09.611 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:34:09.612 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 26.8568ms -2023-04-05 06:34:09.612 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:09.612 +00:00 [INF] HTTP POST / responded 200 in 28.0675 ms -2023-04-05 06:34:09.613 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 28.7077ms -2023-04-05 06:34:13.647 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/ application/json 2664 -2023-04-05 06:34:13.647 +00:00 [INF] Executing endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:13.648 +00:00 [INF] Route matched with {action = "Index", controller = "Home"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index() on controller Web.Gateway.HomeController (Web.Gateway). -2023-04-05 06:34:13.675 +00:00 [INF] Executing StatusCodeResult, setting HTTP status code 200 -2023-04-05 06:34:13.675 +00:00 [INF] Executed action Web.Gateway.HomeController.Index (Web.Gateway) in 27.0876ms -2023-04-05 06:34:13.676 +00:00 [INF] Executed endpoint 'Web.Gateway.HomeController.Index (Web.Gateway)' -2023-04-05 06:34:13.677 +00:00 [INF] HTTP POST / responded 200 in 29.5785 ms -2023-04-05 06:34:13.677 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/ application/json 2664 - 200 0 - 30.6273ms -2023-04-05 06:35:23.514 +00:00 [INF] Application is shutting down... -2023-04-05 06:35:23.518 +00:00 [INF] NwymRLaP7tVzbwAHNwNmlg has disconnected: -2023-04-05 06:35:23.518 +00:00 [INF] Sg_Ja0fwRAvjab7IEdlhzA has disconnected: -2023-04-05 06:35:23.519 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:35:23.519 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:35:23.519 +00:00 [INF] HTTP GET /hub responded 101 in 137138.9848 ms -2023-04-05 06:35:23.519 +00:00 [INF] HTTP GET /hub responded 101 in 121094.9658 ms -2023-04-05 06:35:23.520 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=Pq0EMpOcGnrnnHzR1jcf0g - - - 101 - - 137139.7065ms -2023-04-05 06:35:23.520 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=Nu5pRIiod-3rwaJ0pMBiqg - - - 101 - - 121095.6964ms -2023-04-05 06:47:53.433 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 06:47:53.477 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 06:47:53.492 +00:00 [INF] Loading proxy data from config. -2023-04-05 06:47:53.610 +00:00 [INF] Creating key {fd968928-7a7e-449e-aaa8-d69f1da58808} with creation date 2023-04-05 06:47:53Z, activation date 2023-04-05 06:47:53Z, and expiration date 2023-07-04 06:47:53Z. -2023-04-05 06:47:53.618 +00:00 [WRN] No XML encryptor configured. Key {fd968928-7a7e-449e-aaa8-d69f1da58808} may be persisted to storage in unencrypted form. -2023-04-05 06:47:53.621 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-fd968928-7a7e-449e-aaa8-d69f1da58808.xml'. -2023-04-05 06:47:53.646 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 06:47:53.648 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 06:47:53.648 +00:00 [INF] Hosting environment: Production -2023-04-05 06:47:53.648 +00:00 [INF] Content root path: /app/ -2023-04-05 06:47:59.323 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:47:59.353 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:47:59.355 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:47:59.365 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:47:59.366 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 40.1264 ms -2023-04-05 06:47:59.368 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 47.2053ms -2023-04-05 06:47:59.369 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=jHFzRagj0wnbGrC9-SYtjA - - -2023-04-05 06:47:59.371 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:47:59.371 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:47:59.385 +00:00 [INF] aFR8KcL9d2oeXhnP4CHlUg has connected -2023-04-05 06:50:18.987 +00:00 [INF] Application is shutting down... -2023-04-05 06:50:18.994 +00:00 [INF] aFR8KcL9d2oeXhnP4CHlUg has disconnected: -2023-04-05 06:50:18.999 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:50:19.001 +00:00 [INF] HTTP GET /hub responded 101 in 139630.9869 ms -2023-04-05 06:50:19.001 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=jHFzRagj0wnbGrC9-SYtjA - - - 101 - - 139631.8833ms -2023-04-05 06:50:56.552 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 06:50:56.592 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 06:50:56.605 +00:00 [INF] Loading proxy data from config. -2023-04-05 06:50:56.740 +00:00 [INF] Creating key {1b78b2d0-e0ad-4209-b18a-ef00a3d00e60} with creation date 2023-04-05 06:50:56Z, activation date 2023-04-05 06:50:56Z, and expiration date 2023-07-04 06:50:56Z. -2023-04-05 06:50:56.751 +00:00 [WRN] No XML encryptor configured. Key {1b78b2d0-e0ad-4209-b18a-ef00a3d00e60} may be persisted to storage in unencrypted form. -2023-04-05 06:50:56.754 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-1b78b2d0-e0ad-4209-b18a-ef00a3d00e60.xml'. -2023-04-05 06:50:56.780 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 06:50:56.783 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 06:50:56.784 +00:00 [INF] Hosting environment: Production -2023-04-05 06:50:56.784 +00:00 [INF] Content root path: /app/ -2023-04-05 06:51:02.328 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:51:02.362 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:51:02.364 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:51:02.375 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:51:02.377 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 45.6374 ms -2023-04-05 06:51:02.379 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 53.5737ms -2023-04-05 06:51:02.380 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=tKNZu2FttLPLi1b2momcew - - -2023-04-05 06:51:02.383 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:51:02.383 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 06:51:02.399 +00:00 [INF] SASNca9Oj4hqMc5aJ8HWLg has connected -2023-04-05 06:51:37.145 +00:00 [INF] Application is shutting down... -2023-04-05 06:51:37.152 +00:00 [INF] SASNca9Oj4hqMc5aJ8HWLg has disconnected: -2023-04-05 06:51:37.157 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 06:51:37.158 +00:00 [INF] HTTP GET /hub responded 101 in 34777.6343 ms -2023-04-05 06:51:37.159 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=tKNZu2FttLPLi1b2momcew - - - 101 - - 34779.1167ms -2023-04-05 06:51:37.168 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 06:51:37.170 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 06:51:37.171 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 06:51:37.171 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 06:51:37.172 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 3.7213 ms -2023-04-05 06:51:37.172 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 4.6124ms -2023-04-05 07:53:02.674 +00:00 [WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. -2023-04-05 07:53:02.729 +00:00 [INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. -2023-04-05 07:53:02.745 +00:00 [INF] Loading proxy data from config. -2023-04-05 07:53:02.934 +00:00 [INF] Creating key {6de7547c-c5be-47f6-a4bb-57795ebb56ce} with creation date 2023-04-05 07:53:02Z, activation date 2023-04-05 07:53:02Z, and expiration date 2023-07-04 07:53:02Z. -2023-04-05 07:53:02.946 +00:00 [WRN] No XML encryptor configured. Key {6de7547c-c5be-47f6-a4bb-57795ebb56ce} may be persisted to storage in unencrypted form. -2023-04-05 07:53:02.950 +00:00 [INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-6de7547c-c5be-47f6-a4bb-57795ebb56ce.xml'. -2023-04-05 07:53:02.984 +00:00 [INF] Now listening on: http://[::]:21093 -2023-04-05 07:53:02.987 +00:00 [INF] Application started. Press Ctrl+C to shut down. -2023-04-05 07:53:02.987 +00:00 [INF] Hosting environment: Production -2023-04-05 07:53:02.988 +00:00 [INF] Content root path: /app/ -2023-04-05 07:53:05.629 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 07:53:05.629 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 07:53:05.680 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 07:53:05.680 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 07:53:05.682 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 07:53:05.683 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 07:53:05.696 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 07:53:05.696 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 07:53:05.699 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 66.0500 ms -2023-04-05 07:53:05.699 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 65.6748 ms -2023-04-05 07:53:05.702 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=Si2-WemDSX_lFtZ_mJOdjw - - -2023-04-05 07:53:05.702 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 75.4596ms -2023-04-05 07:53:05.702 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 75.7894ms -2023-04-05 07:53:05.705 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 07:53:05.705 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 07:53:05.722 +00:00 [INF] X2FS_PbydrX6Lk92GY227Q has connected -2023-04-05 07:53:05.732 +00:00 [INF] Request starting HTTP/1.1 GET http://localhost:21093/hub?id=HBdqoVjUSMD6j4HgkRxGzw - - -2023-04-05 07:53:05.733 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 07:53:05.734 +00:00 [INF] Executing endpoint '/hub' -2023-04-05 07:53:05.736 +00:00 [INF] lyOUizbHAKQt7RqUMZm7zA has connected -2023-04-05 07:53:42.269 +00:00 [INF] Application is shutting down... -2023-04-05 07:53:42.276 +00:00 [INF] X2FS_PbydrX6Lk92GY227Q has disconnected: -2023-04-05 07:53:42.276 +00:00 [INF] lyOUizbHAKQt7RqUMZm7zA has disconnected: -2023-04-05 07:53:42.282 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 07:53:42.282 +00:00 [INF] Executed endpoint '/hub' -2023-04-05 07:53:42.283 +00:00 [INF] HTTP GET /hub responded 101 in 36550.4310 ms -2023-04-05 07:53:42.283 +00:00 [INF] HTTP GET /hub responded 101 in 36580.8559 ms -2023-04-05 07:53:42.283 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=HBdqoVjUSMD6j4HgkRxGzw - - - 101 - - 36551.0980ms -2023-04-05 07:53:42.283 +00:00 [INF] Request finished HTTP/1.1 GET http://localhost:21093/hub?id=Si2-WemDSX_lFtZ_mJOdjw - - - 101 - - 36581.7550ms -2023-04-05 07:53:42.291 +00:00 [INF] Request starting HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 -2023-04-05 07:53:42.293 +00:00 [INF] Cookies was not authenticated. Failure message: Unprotect ticket failed -2023-04-05 07:53:42.293 +00:00 [INF] Executing endpoint '/hub/negotiate' -2023-04-05 07:53:42.294 +00:00 [INF] Executed endpoint '/hub/negotiate' -2023-04-05 07:53:42.294 +00:00 [INF] HTTP POST /hub/negotiate responded 200 in 2.1217 ms -2023-04-05 07:53:42.294 +00:00 [INF] Request finished HTTP/1.1 POST http://localhost:21093/hub/negotiate?negotiateVersion=1 - 0 - 200 316 application/json 3.1092ms diff --git a/build/src/docker/publish/conf/gateway/appsettings.json b/build/src/docker/publish/conf/gateway/appsettings.json index be42cb462..08e1db93b 100644 --- a/build/src/docker/publish/conf/gateway/appsettings.json +++ b/build/src/docker/publish/conf/gateway/appsettings.json @@ -2,10 +2,19 @@ "ConnectionStrings": { "InfluxDB": "url=http://influxdb:8086;database=logs;usr=admin;pwd=aA123456!;retention-policy=d30;" }, + "CORS": { + "abp": { + "AllowAnyOrigin": false, + "Origins": [ + "http://localhost:9527" + ] + } + }, "ReverseProxy": { "Routes": { "abp": { "ClusterId": "abp", + "CorsPolicy": "abp", "Match": { "Path": "/api/auth/{regex((abp|identity|base|multi-tenancy|permission-management))}/{**catch-all}" },