Based on this article #metrics there should be some metrics for postgres shown on the aspire dashboard.
I added postgres like this
IResourceBuilder<PostgresDatabaseResource> postgres =
builder.AddPostgres("postgres").WithPgAdmin().AddDatabase("ConfigurationDb").WithDaprSidecar();
IResourceBuilder<ProjectResource> configurationService = builder.AddProject<Exoda_Configuration>("configuration")
.WithSwaggerUi()
.WithScalar()
.WithReDoc()
.WithReference(postgres)
.WaitFor(postgres)
.WithDaprSidecar();
builder.AddProject<Exoda_Web>(AspireResourceNames.WebFrontend)
.WithExternalHttpEndpoints()
.WithReference(cache)
.WaitFor(cache)
.WithReference(configurationService)
.WaitFor(configurationService)
.WithDaprSidecar();
The postgres metrics does not show up anywhere in the dashboard. Am I missing something?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744855422a4597374.html
评论列表(0条)