Skip to content

Commit

Permalink
Use 10 sec export interval for console (#3081)
Browse files Browse the repository at this point in the history
  • Loading branch information
cijothomas authored Mar 24, 2022
1 parent 96b043e commit f531391
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/OpenTelemetry.Exporter.Console/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
([#2929](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2929)
[#3061](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3061))

* `AddConsoleExporter` extension method by default sets up exporter
to export metrics every 10 seconds.

## 1.2.0-rc3

Released 2022-Mar-04
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace OpenTelemetry.Metrics
/// </summary>
public static class ConsoleExporterMetricsExtensions
{
private const int DefaultExportIntervalMilliseconds = Timeout.Infinite;
private const int DefaultExportIntervalMilliseconds = 10000;
private const int DefaultExportTimeoutMilliseconds = Timeout.Infinite;

/// <summary>
Expand Down

0 comments on commit f531391

Please sign in to comment.