minor doc fix (#3168)

* minor doc fix

* alpha sort
This commit is contained in:
Cijo Thomas 2022-04-13 13:46:06 -07:00 committed by GitHub
parent 26c3e0c23c
commit cd72a39d99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,7 @@ OpenTelemetry .NET SDK has provided the following built-in log exporters:
* [InMemory](../../../src/OpenTelemetry.Exporter.InMemory/README.md)
* [Console](../../../src/OpenTelemetry.Exporter.Console/README.md)
* [OpenTelemetryProtocol](../../../src/OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md)
Custom exporters can be implemented to send telemetry data to places which are
not covered by the built-in exporters:
@ -21,7 +22,6 @@ not covered by the built-in exporters:
* Exporters can optionally implement the `OnForceFlush` and `OnShutdown` method.
* Depending on user's choice and load on the application, `Export` may get
called with one or more log records.
* Exporters will only receive sampled-in log records.
* Exporters should not throw exceptions from `Export`, `OnForceFlush` and
`OnShutdown`.
* Exporters should not modify log records they receive (the same log records may

View File

@ -9,8 +9,8 @@
OpenTelemetry .NET SDK has provided the following built-in metric exporters:
* [Console](../../../src/OpenTelemetry.Exporter.Console/README.md)
* [InMemory](../../../src/OpenTelemetry.Exporter.InMemory/README.md)
* [Console](../../../src/OpenTelemetry.Exporter.Console/README.md)
* [OpenTelemetryProtocol](../../../src/OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md)
* [Prometheus](../../../src/OpenTelemetry.Exporter.Prometheus/README.md)