Dashboard
The dashboard show metrics and logs of all pipelines
The Dashboard is displaed in a Webapplication when navigating to the url \gaucho
Installation
Gaucho.Dashboard is installed with NuGet
https://www.nuget.org/packages/Gaucho.Dashboard/
Setup
In ASP.NET Core the Gaucho.Dashboard is added in the setup through a ExtensionMethod of the IApplicationBuilder
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IHostApplicationLifetime applicationLifetime)
{
app.UseGauchoDashboard(pathMatch:"/gaucho", options: new DashboardOptions
{
Title = "Gaucho Dashboard"
});
}
View the dashboard
The dashboard is mapped to the path provided in the parameter pathMatch.
In the browser simply navigate to the configured Url to display the dashboard.