Using the dashboard

The application will issue a certificate. Before you run the application, add support to trust the HTTPS development certificate by running:

dotnet dev-certs https --trust

Now run the project:

cd .\NetAspire.Arm\
dotnet run --project NetAspire.Arm.AppHost

The output should look like the text below:

__output__Building...
__output__info: Aspire.Hosting.DistributedApplication[0]
__output__      Aspire version: 8.2.2+5fa9337a84a52e9bd185d04d156eccbdcf592f74
__output__info: Aspire.Hosting.DistributedApplication[0]
__output__      Distributed application starting.
__output__info: Aspire.Hosting.DistributedApplication[0]
__output__      Application host directory is: /Users/db/Repos/NetAspire.Arm/NetAspire.Arm.AppHost
__output__info: Aspire.Hosting.DistributedApplication[0]
__output__      Now listening on: https://localhost:17222
__output__info: Aspire.Hosting.DistributedApplication[0]
__output__      Login to the dashboard at https://localhost:17222/login?t=81f99566c9ec462e66f5eab5aa9307b0

Click on the link generated for the dashboard.

In this case, it is: https://localhost:17222/login?t=81f99566c9ec462e66f5eab5aa9307b0 .

This directs you to the application dashboard, as Figure 1 shows:

Image Alt Text:fig1 alt-textFigure 1: Application Dashboard.

On the dashboard, locate and click the endpoint link for NetAspire.Arm.Web.

This takes you to the Blazor-based web application. In the Blazor app, navigate to the Weather section to access and display data retrieved from the WeatherForecast API:

Image Alt Text:fig2 alt-textFigure 2: Data Displayed from WeatherForecast API.

Now return to the dashboard, and select the Traces option. This section provides detailed telemetry tracing, allowing you to view the flow of requests, track service dependencies, and analyze performance metrics for your application:

Image Alt Text:fig3 alt-textFigure 3: Traces.

By following these steps, you can explore the key components of the .NET Aspire application, including its dashboard, data interaction through APIs, and telemetry tracing capabilities.

Back
Next