Skip to content

Commit

Permalink
[Exporter.Geneva] - Change default metric exporter interval to 60sec (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cijothomas authored Oct 20, 2022
1 parent 46179b7 commit 1757bcf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
values.
[#721](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/721)

* Add support for exporting exception stack.
[#672](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/672)

* Change the default MetricExportInterval from 20 seconds to 60 seconds.
[#722](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/722)

## 1.4.0-beta.2

Released 2022-Oct-17
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace OpenTelemetry.Exporter.Geneva;
public class GenevaMetricExporterOptions
{
private IReadOnlyDictionary<string, object> _prepopulatedMetricDimensions;
private int _metricExporterIntervalMilliseconds = 20000;
private int _metricExporterIntervalMilliseconds = 60000;

/// <summary>
/// Gets or sets the ConnectionString which contains semicolon separated list of key-value pairs.
Expand All @@ -33,7 +33,7 @@ public class GenevaMetricExporterOptions
public string ConnectionString { get; set; }

/// <summary>
/// Gets or sets the metric export interval in milliseconds. The default value is 20000.
/// Gets or sets the metric export interval in milliseconds. The default value is 60000.
/// </summary>
public int MetricExportIntervalMilliseconds
{
Expand Down

0 comments on commit 1757bcf

Please sign in to comment.