Skip to content

Commit

Permalink
remove links to removed metrics page, use var
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHess committed Feb 5, 2025
1 parent 40b8398 commit fd9fa58
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/v4/management/prometheus.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ builder.Services.AddPrometheusActuator(true, configurePrometheusPipeline =>

In order for the Prometheus endpoint to return metrics, the application and relevant libraries need to be instrumented.
This page will cover the basics for elements that previous versions of Steeltoe configured automatically.
You should refer to the [OpenTelemetry documentation](https://opentelemetry.io/docs/languages/net/instrumentation/) for more detailed information.
Please refer to the [OpenTelemetry documentation](https://opentelemetry.io/docs/languages/net/instrumentation/) for more detailed information.

### ASP.NET Core

Expand Down
1 change: 0 additions & 1 deletion api/v4/management/using-endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ The following table describes the available Steeltoe management endpoints that c
| [info](./info.md) | Customizable endpoint that gathers arbitrary application information (such as app version). |
| [loggers](./loggers.md) | Gathers existing loggers and allows changing their minimum levels at runtime. |
| [mappings](./mappings.md) | Reports the configured ASP.NET routes and route templates. |
| [metrics](./metrics.md) | Reports the collected metrics for the application. |
| [prometheus](./prometheus.md) | Exposes metrics collected via built-in instrumentation of various aspects of the application in the Prometheus format. |
| [refresh](./refresh.md) | Triggers a reload of the application configuration. |
| [services](./services.md) | Lists the contents of the .NET dependency injection service container. |
Expand Down
2 changes: 0 additions & 2 deletions api/v4/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@
name: Loggers
- topicHref: management/mappings.md
name: Route Mappings
- topicHref: management/metrics.md
name: Metrics
- topicHref: management/prometheus.md
name: Prometheus
- topicHref: management/refresh.md
Expand Down
2 changes: 1 addition & 1 deletion api/v4/tracing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The only remaining step is to register the processor:
```csharp
using Steeltoe.Management.Tracing;

WebApplicationBuilder builder = WebApplication.CreateBuilder(args);
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddTracingLogProcessor();
```

Expand Down

0 comments on commit fd9fa58

Please sign in to comment.