# Console Exporter for OpenTelemetry .NET [![NuGet](https://img.shields.io/nuget/v/OpenTelemetry.Exporter.Console.svg)](https://www.nuget.org/packages/OpenTelemetry.Exporter.Console) [![NuGet](https://img.shields.io/nuget/dt/OpenTelemetry.Exporter.Console.svg)](https://www.nuget.org/packages/OpenTelemetry.Exporter.Console) The console exporter prints data to the Console window. ConsoleExporter supports exporting logs, metrics and traces. **Note:** this exporter is intended to be used during learning how telemetry data are created and exported. It is not recommended for any production environment. ## Installation ```shell dotnet add package OpenTelemetry.Exporter.Console ``` See the individual "getting started" examples depending on the signal being used: * [Logs](../../docs/logs/getting-started/Program.cs) * [Metrics](../../docs/metrics/getting-started/Program.cs) * [Traces](../../docs/trace/getting-started/Program.cs) ## Configuration See the [`TestConsoleExporter.cs`](../../examples/Console/TestConsoleExporter.cs) for an example of how to use the exporter for exporting traces to a collection. You can configure the `ConsoleExporter` through `Options` types properties and environment variables. The `Options` type setters take precedence over the environment variables. ## Environment Variables The following environment variables can be used to override the default values of the `PeriodicExportingMetricReaderOptions` (following the [OpenTelemetry specification](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.12.0/specification/sdk-environment-variables.md#periodic-exporting-metricreader). | Environment variable | `PeriodicExportingMetricReaderOptions` property | | ------------------------------| ------------------------------------------------| | `OTEL_METRIC_EXPORT_INTERVAL` | `ExportIntervalMilliseconds` | | `OTEL_METRIC_EXPORT_TIMEOUT` | `ExportTimeoutMilliseconds` | `FormatException` is thrown in case of an invalid value for any of the supported environment variables. ## References * [OpenTelemetry Project](https://opentelemetry.io/)