-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating changelog Co-authored-by: Cijo Thomas <[email protected]>
- Loading branch information
1 parent
351c788
commit f48e3b4
Showing
10 changed files
with
155 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// <copyright file="MeterProviderBuilder.cs" company="OpenTelemetry Authors"> | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// </copyright> | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using OpenTelemetry.Metrics.Export; | ||
using static OpenTelemetry.Metrics.MeterProviderSdk; | ||
|
||
namespace OpenTelemetry.Metrics | ||
{ | ||
/// <summary> | ||
/// Build MeterProvider with Exporter, Processor and PushInterval. | ||
/// </summary> | ||
public class MeterProviderBuilder | ||
{ | ||
private static readonly TimeSpan DefaultPushInterval = TimeSpan.FromSeconds(60); | ||
private MetricProcessor metricProcessor; | ||
private MetricExporter metricExporter; | ||
private TimeSpan metricPushInterval; | ||
|
||
internal MeterProviderBuilder() | ||
{ | ||
this.metricExporter = new NoopMetricExporter(); | ||
this.metricProcessor = new NoopMetricProcessor(); | ||
this.metricPushInterval = DefaultPushInterval; | ||
} | ||
|
||
/// <summary> | ||
/// Sets processor. | ||
/// </summary> | ||
/// <param name="processor">Processor instance.</param> | ||
/// <returns>Returns <see cref="MeterProviderBuilder"/> for chaining.</returns> | ||
public MeterProviderBuilder SetProcessor(MetricProcessor processor) | ||
{ | ||
this.metricProcessor = processor ?? new NoopMetricProcessor(); | ||
return this; | ||
} | ||
|
||
/// <summary> | ||
/// Sets exporter. | ||
/// </summary> | ||
/// <param name="exporter">Exporter instance.</param> | ||
/// <returns>Returns <see cref="MeterProviderBuilder"/> for chaining.</returns> | ||
public MeterProviderBuilder SetExporter(MetricExporter exporter) | ||
{ | ||
this.metricExporter = exporter ?? new NoopMetricExporter(); | ||
return this; | ||
} | ||
|
||
/// <summary> | ||
/// Sets push interval. | ||
/// </summary> | ||
/// <param name="pushInterval">Push interval.</param> | ||
/// <returns>Returns <see cref="MeterProviderBuilder"/> for chaining.</returns> | ||
public MeterProviderBuilder SetPushInterval(TimeSpan pushInterval) | ||
{ | ||
this.metricPushInterval = pushInterval == default ? DefaultPushInterval : pushInterval; | ||
return this; | ||
} | ||
|
||
public MeterProvider Build() | ||
{ | ||
var cancellationTokenSource = new CancellationTokenSource(); | ||
var meterRegistry = new Dictionary<MeterRegistryKey, MeterSdk>(); | ||
|
||
var controller = new PushMetricController( | ||
meterRegistry, | ||
this.metricProcessor, | ||
this.metricExporter, | ||
this.metricPushInterval, | ||
cancellationTokenSource); | ||
|
||
return new MeterProviderSdk(this.metricProcessor, meterRegistry, controller, cancellationTokenSource); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.