Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve testing templates #7619

Merged
merged 2 commits into from
Feb 14, 2025
Merged

Conversation

DamianEdwards
Copy link
Member

Description

Update testing templates to use the new features in 9.1 and some other improvements based on feedback.

Fixes #7606

Checklist

  • Is this feature complete?
    • Yes. Ready to ship.
  • Are you including unit tests for the changes and scenario tests if relevant?
    • No (existing coverage in workload tests)
  • Did you add public API?
    • No
  • Does the change make any security assumptions or guarantees?
    • No
  • Does the change require an update in our Aspire docs?
    • No

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.

logging.SetMinimumLevel(LogLevel.Debug);
// Override the logging filters from the app's configuration
logging.AddFilter(appHost.Environment.ApplicationName, LogLevel.Debug);
logging.AddFilter("Aspire.", LogLevel.Debug);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How noisey is this? Is it going to cause a lot of spew in the logs?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that was the question I had posed in the issue. I do LogLevel.Trace in the samples logs because I found having everything possible just made diagnosing issues much easier, but I'm interested in folks' thoughts.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me capture it and paste here.

Copy link
Member Author

@DamianEdwards DamianEdwards Feb 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Log output: Information
[2025-02-14 20:05:03Z] info: Aspire.Hosting.DistributedApplication[0]
      Aspire version: 9.2.0-dev
[2025-02-14 20:05:03Z] info: Aspire.Hosting.DistributedApplication[0]
      Distributed application starting.
[2025-02-14 20:05:03Z] info: Aspire.Hosting.DistributedApplication[0]
      Application host directory is: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.AppHost
[2025-02-14 20:05:05Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      1: 2025-02-14T20:05:05.4258973Z Waiting for resource 'apiservice' to enter the 'Running' state.
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      2: 2025-02-14T20:05:06.0062475Z Waiting for resource ready to execute for 'apiservice'.
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      3: 2025-02-14T20:05:06.0080173Z Finished waiting for resource 'apiservice'.
[2025-02-14 20:05:06Z] info: Aspire.Hosting.DistributedApplication[0]
      Distributed application started. Press Ctrl+C to shut down.
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      1: 2025-02-14T20:05:05.7000000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      2: 2025-02-14T20:05:05.7000000Z       Now listening on: https://localhost:53428
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      3: 2025-02-14T20:05:05.7010000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      4: 2025-02-14T20:05:05.7010000Z       Now listening on: http://localhost:53429
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      5: 2025-02-14T20:05:05.7360000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      6: 2025-02-14T20:05:05.7380000Z       Application started. Press Ctrl+C to shut down.
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      7: 2025-02-14T20:05:05.7380000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      8: 2025-02-14T20:05:05.7390000Z       Hosting environment: Development
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      9: 2025-02-14T20:05:05.7390000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      10: 2025-02-14T20:05:05.7390000Z       Content root path: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
[2025-02-14 20:05:06Z] info: System.Net.Http.HttpClient.Default.LogicalHandler[100]
      Start processing HTTP request GET http://localhost:53425/
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      4: 2025-02-14T20:05:06.3890000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      5: 2025-02-14T20:05:06.3900000Z       Now listening on: https://localhost:53432
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      6: 2025-02-14T20:05:06.3910000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      7: 2025-02-14T20:05:06.3910000Z       Now listening on: http://localhost:53433
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      8: 2025-02-14T20:05:06.4050000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      9: 2025-02-14T20:05:06.4050000Z       Application started. Press Ctrl+C to shut down.
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      10: 2025-02-14T20:05:06.4060000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      11: 2025-02-14T20:05:06.4060000Z       Hosting environment: Development
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      12: 2025-02-14T20:05:06.4070000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:05:06Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      13: 2025-02-14T20:05:06.4070000Z       Content root path: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
[2025-02-14 20:05:06Z] info: System.Net.Http.HttpClient.Default.ClientHandler[100]
      Sending HTTP request GET http://localhost:53425/
[2025-02-14 20:05:06Z] info: System.Net.Http.HttpClient.Default.ClientHandler[101]
      Received HTTP response headers after 98.2272ms - 200
[2025-02-14 20:05:06Z] info: Polly[3]
      Execution attempt. Source: '-standard//Standard-Retry', Operation Key: '', Result: '200', Handled: 'False', Attempt: '0', Execution Time: 108.2768ms
[2025-02-14 20:05:06Z] info: System.Net.Http.HttpClient.Default.LogicalHandler[101]
      End processing HTTP request after 123.3764ms - 200
Log output: Debug
[2025-02-14 19:59:26Z] info: Aspire.Hosting.DistributedApplication[0]
      Aspire version: 9.2.0-dev
[2025-02-14 19:59:26Z] info: Aspire.Hosting.DistributedApplication[0]
      Distributed application starting.
[2025-02-14 19:59:26Z] info: Aspire.Hosting.DistributedApplication[0]
      Application host directory is: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.AppHost
[2025-02-14 19:59:32Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource apiservice/apiservice-yhyuwzvm changed state: Starting
[2025-02-14 19:59:32Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dadsuhxk changed state: Starting
[2025-02-14 19:59:32Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dadsuhxk changed state: Starting -> Waiting
[2025-02-14 19:59:32Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      1: 2025-02-14T19:59:32.2600623Z Waiting for resource 'apiservice' to enter the 'Running' state.
[2025-02-14 19:59:32Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Waiting for resource 'webfrontend' to match predicate.
[2025-02-14 19:59:32Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource apiservice/apiservice-yhyuwzvm changed state: Starting
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource apiservice/apiservice-yhyuwzvm changed state: Starting -> Running
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Starting health monitoring for resource 'apiservice'.
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      2: 2025-02-14T19:59:33.2380699Z Waiting for resource ready to execute for 'apiservice'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'apiservice' has no health checks to monitor.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'apiservice' is ready.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing ResourceReadyEvent for 'apiservice'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Waiting for ResourceReadyEvent for 'apiservice'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      ResourceReadyEvent for 'apiservice' completed.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing the result of ResourceReadyEvent for 'apiservice'.
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      3: 2025-02-14T19:59:33.2402322Z Finished waiting for resource 'apiservice'.
[2025-02-14 19:59:33Z] info: Aspire.Hosting.DistributedApplication[0]
      Distributed application started. Press Ctrl+C to shut down.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dadsuhxk changed state: Starting
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      1: 2025-02-14T19:59:32.9810000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      2: 2025-02-14T19:59:32.9820000Z       Now listening on: https://localhost:49448
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      3: 2025-02-14T19:59:32.9820000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      4: 2025-02-14T19:59:32.9820000Z       Now listening on: http://localhost:49449
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      5: 2025-02-14T19:59:33.0110000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      6: 2025-02-14T19:59:33.0120000Z       Application started. Press Ctrl+C to shut down.
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      7: 2025-02-14T19:59:33.0120000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      8: 2025-02-14T19:59:33.0120000Z       Hosting environment: Development
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      9: 2025-02-14T19:59:33.0130000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      10: 2025-02-14T19:59:33.0130000Z       Content root path: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Waiting for resource 'webfrontend' to enter the 'Healthy' state.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dadsuhxk changed state: Starting -> Running
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Starting health monitoring for resource 'webfrontend'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'webfrontend' has no health checks to monitor.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'webfrontend' is ready.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing ResourceReadyEvent for 'webfrontend'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Waiting for ResourceReadyEvent for 'webfrontend'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      ResourceReadyEvent for 'webfrontend' completed.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing the result of ResourceReadyEvent for 'webfrontend'.
[2025-02-14 19:59:33Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Finished waiting for resource 'webfrontend'.
[2025-02-14 19:59:33Z] info: System.Net.Http.HttpClient.Default.LogicalHandler[100]
      Start processing HTTP request GET http://localhost:49444/
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      4: 2025-02-14T19:59:33.7780000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      5: 2025-02-14T19:59:33.7790000Z       Now listening on: https://localhost:49453
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      6: 2025-02-14T19:59:33.7800000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      7: 2025-02-14T19:59:33.7800000Z       Now listening on: http://localhost:49454
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      8: 2025-02-14T19:59:33.7930000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      9: 2025-02-14T19:59:33.7930000Z       Application started. Press Ctrl+C to shut down.
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      10: 2025-02-14T19:59:33.7940000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      11: 2025-02-14T19:59:33.7940000Z       Hosting environment: Development
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      12: 2025-02-14T19:59:33.7950000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 19:59:33Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      13: 2025-02-14T19:59:33.7950000Z       Content root path: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
[2025-02-14 19:59:33Z] info: System.Net.Http.HttpClient.Default.ClientHandler[100]
      Sending HTTP request GET http://localhost:49444/
[2025-02-14 19:59:34Z] info: System.Net.Http.HttpClient.Default.ClientHandler[101]
      Received HTTP response headers after 93.448ms - 200
[2025-02-14 19:59:34Z] info: Polly[3]
      Execution attempt. Source: '-standard//Standard-Retry', Operation Key: '', Result: '200', Handled: 'False', Attempt: '0', Execution Time: 103.0821ms
[2025-02-14 19:59:34Z] info: System.Net.Http.HttpClient.Default.LogicalHandler[101]
      End processing HTTP request after 123.2131ms - 200
Log details: Trace
Standard Output: 
[2025-02-14 20:06:20Z] info: Aspire.Hosting.DistributedApplication[0]
      Aspire version: 9.2.0-dev
[2025-02-14 20:06:20Z] info: Aspire.Hosting.DistributedApplication[0]
      Distributed application starting.
[2025-02-14 20:06:20Z] info: Aspire.Hosting.DistributedApplication[0]
      Application host directory is: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.AppHost
[2025-02-14 20:06:24Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 1
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = ProjectResource,
      CreationTimeStamp = (null),
      State = { Text = (null), Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
      
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:24Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 1
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = ProjectResource,
      CreationTimeStamp = (null),
      State = { Text = (null), Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
      
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource apiservice/apiservice-mgbjrsur changed state: Starting
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 2
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = (null),
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
      
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dxkxamnu changed state: Starting
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 2
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = (null),
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
      
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dxkxamnu changed state: Starting -> Waiting
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 3
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = (null),
      State = { Text = Waiting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
      
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      1: 2025-02-14T20:06:26.5878596Z Waiting for resource 'apiservice' to enter the 'Running' state.
[2025-02-14 20:06:26Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Waiting for resource 'webfrontend' to match predicate.
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 3
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = , Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 4
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = , Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 5
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = , Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:26Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource apiservice/apiservice-mgbjrsur changed state: Starting
[2025-02-14 20:06:26Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 6
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 7
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 8
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54139, https target port = https://localhost:54142 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 9
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54139, https target port = https://localhost:54142, http = http://localhost:54140, http target port = http://localhost:54143 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 10
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54139, https target port = https://localhost:54142, http = http://localhost:54140, http target port = http://localhost:54143 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource apiservice/apiservice-mgbjrsur changed state: Starting -> Running
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Starting health monitoring for resource 'apiservice'.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 11
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Running, Style = (null) },
      HeathStatus = Healthy,
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54139, https target port = https://localhost:54142, http = http://localhost:54140, http target port = http://localhost:54143 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      2: 2025-02-14T20:06:27.2195584Z Waiting for resource ready to execute for 'apiservice'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'apiservice' has no health checks to monitor.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'apiservice' is ready.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing ResourceReadyEvent for 'apiservice'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Waiting for ResourceReadyEvent for 'apiservice'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      ResourceReadyEvent for 'apiservice' completed.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing the result of ResourceReadyEvent for 'apiservice'.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 12
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Running, Style = (null) },
      HeathStatus = Healthy,
      ResourceReady = True,
      ExitCode = (null),
      Urls = { https = https://localhost:54139, https target port = https://localhost:54142, http = http://localhost:54140, http target port = http://localhost:54143 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      3: 2025-02-14T20:06:27.2214949Z Finished waiting for resource 'apiservice'.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 13
      Resource apiservice/apiservice-mgbjrsur update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:26,
      State = { Text = Running, Style = (null) },
      HeathStatus = Healthy,
      ResourceReady = True,
      ExitCode = (null),
      Urls = { https = https://localhost:54139, https target port = https://localhost:54142, http = http://localhost:54140, http target port = http://localhost:54143 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54139
        ASPNETCORE_URLS = https://localhost:54142;http://localhost:54143
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=mgbjrsur
        OTEL_SERVICE_NAME = apiservice
        OTEL_TRACES_SAMPLER = always_on
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
        executable.args = 
        executable.pid = 23324
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService\AspireApp3.ApiService.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 4
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = , Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.Devcontainers.Codespaces.CodespacesResourceUrlRewriterService[0]
      Not running in Codespaces, skipping URL rewriting.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 5
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = , Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
      
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] info: Aspire.Hosting.DistributedApplication[0]
      Distributed application started. Press Ctrl+C to shut down.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 6
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = , Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dxkxamnu changed state: Starting
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 7
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = {  },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      1: 2025-02-14T20:06:26.8890000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      2: 2025-02-14T20:06:26.8890000Z       Now listening on: https://localhost:54142
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      3: 2025-02-14T20:06:26.8900000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      4: 2025-02-14T20:06:26.8910000Z       Now listening on: http://localhost:54143
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      5: 2025-02-14T20:06:26.9280000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      6: 2025-02-14T20:06:26.9290000Z       Application started. Press Ctrl+C to shut down.
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      7: 2025-02-14T20:06:26.9290000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      8: 2025-02-14T20:06:26.9300000Z       Hosting environment: Development
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      9: 2025-02-14T20:06:26.9300000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.apiservice[0]
      10: 2025-02-14T20:06:26.9310000Z       Content root path: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.ApiService
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Waiting for resource 'webfrontend' to enter the 'Healthy' state.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 8
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 9
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150, http = http://localhost:54138, http target port = http://localhost:54151 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 10
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150, http = http://localhost:54138, http target port = http://localhost:54151 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 11
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Starting, Style = (null) },
      HeathStatus = (null),
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150, http = http://localhost:54138, http target port = http://localhost:54151 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Resource webfrontend/webfrontend-dxkxamnu changed state: Starting -> Running
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Starting health monitoring for resource 'webfrontend'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'webfrontend' has no health checks to monitor.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Resource 'webfrontend' is ready.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing ResourceReadyEvent for 'webfrontend'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Waiting for ResourceReadyEvent for 'webfrontend'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      ResourceReadyEvent for 'webfrontend' completed.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.Health.ResourceHealthCheckService[0]
      Publishing the result of ResourceReadyEvent for 'webfrontend'.
[2025-02-14 20:06:27Z] dbug: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Finished waiting for resource 'webfrontend'.
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 12
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Running, Style = (null) },
      HeathStatus = Healthy,
      ResourceReady = False,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150, http = http://localhost:54138, http target port = http://localhost:54151 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 13
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Running, Style = (null) },
      HeathStatus = Healthy,
      ResourceReady = True,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150, http = http://localhost:54138, http target port = http://localhost:54151 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 0
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] info: System.Net.Http.HttpClient.Default.LogicalHandler[100]
      Start processing HTTP request GET http://localhost:54138/
[2025-02-14 20:06:27Z] trce: Aspire.Hosting.ApplicationModel.ResourceNotificationService[0]
      Version: 14
      Resource webfrontend/webfrontend-dxkxamnu update published:
      ResourceType = Project,
      CreationTimeStamp = 2025-02-14T20:06:27,
      State = { Text = Running, Style = (null) },
      HeathStatus = Healthy,
      ResourceReady = True,
      ExitCode = (null),
      Urls = { https = https://localhost:54141, https target port = https://localhost:54150, http = http://localhost:54138, http target port = http://localhost:54151 },
      EnvironmentVariables = {
        ASPNETCORE_ENVIRONMENT = Development
        ASPNETCORE_HTTPS_PORT = 54141
        ASPNETCORE_URLS = https://localhost:54150;http://localhost:54151
        DOTNET_LAUNCH_PROFILE = https
        DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION = true
        LOGGING__CONSOLE__FORMATTERNAME = simple
        OTEL_BLRP_SCHEDULE_DELAY = 1000
        OTEL_BSP_SCHEDULE_DELAY = 1000
        OTEL_DOTNET_EXPERIMENTAL_ASPNETCORE_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_HTTPCLIENT_DISABLE_URL_QUERY_REDACTION = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES = true
        OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY = in_memory
        OTEL_EXPORTER_OTLP_ENDPOINT = http://localhost:4317
        OTEL_EXPORTER_OTLP_PROTOCOL = grpc
        OTEL_METRICS_EXEMPLAR_FILTER = trace_based
        OTEL_METRIC_EXPORT_INTERVAL = 1000
        OTEL_RESOURCE_ATTRIBUTES = service.instance.id=dxkxamnu
        OTEL_SERVICE_NAME = webfrontend
        OTEL_TRACES_SAMPLER = always_on
        services__apiservice__http__0 = http://localhost:54140
        services__apiservice__https__0 = https://localhost:54139
      },
      Properties = {
        executable.path = dotnet
        executable.workDir = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
        executable.args = 
        executable.pid = 75464
        project.path = D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web\AspireApp3.Web.csproj
        resource.appArgs = 
        resource.appArgsSensitivity = 
      },
      HealthReports = {
      
      }
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      4: 2025-02-14T20:06:27.6380000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      5: 2025-02-14T20:06:27.6400000Z       Now listening on: https://localhost:54150
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      6: 2025-02-14T20:06:27.6410000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[14]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      7: 2025-02-14T20:06:27.6410000Z       Now listening on: http://localhost:54151
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      8: 2025-02-14T20:06:27.6550000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      9: 2025-02-14T20:06:27.6550000Z       Application started. Press Ctrl+C to shut down.
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      10: 2025-02-14T20:06:27.6550000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      11: 2025-02-14T20:06:27.6550000Z       Hosting environment: Development
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      12: 2025-02-14T20:06:27.6560000Z \x1b[40m\x1b[32minfo\x1b[39m\x1b[22m\x1b[49m: Microsoft.Hosting.Lifetime[0]
[2025-02-14 20:06:27Z] info: AspireApp3.AppHost.Resources.webfrontend[0]
      13: 2025-02-14T20:06:27.6560000Z       Content root path: D:\src\local\aspire\9.1\AspireApp3\AspireApp3.Web
[2025-02-14 20:06:27Z] info: System.Net.Http.HttpClient.Default.ClientHandler[100]
      Sending HTTP request GET http://localhost:54138/
[2025-02-14 20:06:28Z] info: System.Net.Http.HttpClient.Default.ClientHandler[101]
      Received HTTP response headers after 101.4896ms - 200
[2025-02-14 20:06:28Z] info: Polly[3]
      Execution attempt. Source: '-standard//Standard-Retry', Operation Key: '', Result: '200', Handled: 'False', Attempt: '0', Execution Time: 111.8482ms
[2025-02-14 20:06:28Z] info: System.Net.Http.HttpClient.Default.LogicalHandler[101]
      End processing HTTP request after 130.2809ms - 200

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trace 😄

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK previous comment updated to show the difference between Info, Debug, Trace

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should keep it Debug and we consciously choose which messages we log as Debug or Trace. That feels more appropriate here.

https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.loglevel?view=net-9.0-pp#fields

Trace
Logs that contain the most detailed messages. These messages may contain sensitive application data. These messages are disabled by default and should never be enabled in a production environment.

Debug
Logs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The environment variables logged by resource notification service at trace level are a bit of a risk of leaking secrets, so I'd be very hesitant to make Trace level default. (+ also the verboseness and repetitition of the resource state traces drowns out other logs).

In the original issue, I narrowly scoped my suggestion to ResourceNotificationService and ResourceHealthCheckService as those are the ones I've found useful, and I was wary of adding too much extra logging as I simultaneously find test failures have not enough logging and too many logs. I also thought that by targeting specific filters, people would be less likely to remove the logging, thinking it not necessary, which they may otherwise do seeing a high level wildcard.

I have a slight preference for narrowly specifying the debug level logs to include, but am not too fussed either way.

Copy link
Member

@eerhardt eerhardt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@eerhardt
Copy link
Member

@DamianEdwards - I'm not sure if the template tests are running at all anymore. Were you able to run them locally to ensure this didn't break them?

@DamianEdwards
Copy link
Member Author

@eerhardt let me try. I did manual verification of some of the combinations but didn't run the tests.

@DamianEdwards
Copy link
Member Author

@eerhardt @davidfowl could we configure the CI to run the template tests when source in the templates directory changes?

@eerhardt
Copy link
Member

/azp run dotnet.aspire (Build Linux_helix_tests)

Copy link

No pipelines are associated with this pull request.

@DamianEdwards
Copy link
Member Author

/backport to release/9.1

Copy link
Contributor

Started backporting to release/9.1: https://github.com/dotnet/aspire/actions/runs/13337012216

@DamianEdwards
Copy link
Member Author

OK I'm manually running the AzDO pipeline to get Helix test coverage: https://dev.azure.com/dnceng-public/public/_build/results?buildId=953064&view=results

@danmoseley danmoseley added Servicing-approved Approved for servicing release and removed Servicing-approved Approved for servicing release labels Feb 14, 2025
@DamianEdwards
Copy link
Member Author

Helix tests passed on AzDO pipeline so going to merge this.

@DamianEdwards DamianEdwards merged commit c8dd4c3 into main Feb 14, 2025
70 checks passed
@DamianEdwards DamianEdwards deleted the damianedwards/7606-update-test-templates branch February 14, 2025 21:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9.1 Test Templates don't use new 9.1 Test Features
6 participants