[Editorial] add ToC to logging/metrics docs (#5298)

This commit is contained in:
Reiley Yang 2024-01-31 16:33:48 -08:00 committed by GitHub
parent 0ee3eb149f
commit bace882971
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 36 additions and 2 deletions

View File

@ -33,9 +33,11 @@ If you are new here, please read the getting started docs:
* [Logs](./docs/logs/README.md): [ASP.NET
Core](./docs/logs/getting-started-aspnetcore/README.md) |
[Console](./docs/logs/getting-started-console/README.md)
* Metrics: [ASP.NET Core](./docs/metrics/getting-started-aspnetcore/README.md) |
* [Metrics](./docs/metrics/README.md): [ASP.NET
Core](./docs/metrics/getting-started-aspnetcore/README.md) |
[Console](./docs/metrics/getting-started-console/README.md)
* Traces: [ASP.NET Core](./docs/trace/getting-started-aspnetcore/README.md) |
* [Traces](./docs/trace/README.md): [ASP.NET
Core](./docs/trace/getting-started-aspnetcore/README.md) |
[Console](./docs/trace/getting-started-console/README.md)
This repository includes multiple installable components, available on

View File

@ -1,5 +1,21 @@
# OpenTelemetry .NET Logs
<!-- markdownlint-disable MD033 -->
<details>
<summary>Table of Contents</summary>
* [Best Practices](#best-practices)
* [Package Version](#package-version)
* [Logging API](#logging-api)
* [Logger Management](#logger-management)
* [Log Correlation](#log-correlation)
* [Log Enrichment](#log-enrichment)
* [Log Filtering](#log-filtering)
* [Log Redaction](#log-redaction)
</details>
<!-- markdownlint-enable MD033 -->
## Best Practices
The following tutorials have demonstrated the best practices for logging with

View File

@ -1,5 +1,21 @@
# OpenTelemetry .NET Metrics
<!-- markdownlint-disable MD033 -->
<details>
<summary>Table of Contents</summary>
* [Best Practices](#best-practices)
* [Package Version](#package-version)
* [Metrics API](#metrics-api)
* [MeterProvider Management](#meterprovider-management)
* [Memory Management](#memory-management)
* [Pre-Aggregation](#pre-aggregation)
* [Cardinality Limits](#cardinality-limits)
* [Memory Preallocation](#memory-preallocation)
</details>
<!-- markdownlint-enable MD033 -->
## Best Practices
The following tutorials have demonstrated the best practices for while using