46 lines
1.9 KiB
C#
46 lines
1.9 KiB
C#
// <copyright file="OtlpMetricExporterHelperExtensions.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 OpenTelemetry.Exporter;
|
|
|
|
namespace OpenTelemetry.Metrics
|
|
{
|
|
/// <summary>
|
|
/// Extension methods to simplify registering of the OpenTelemetry Protocol (OTLP) exporter.
|
|
/// </summary>
|
|
public static class OtlpMetricExporterHelperExtensions
|
|
{
|
|
/// <summary>
|
|
/// Adds OpenTelemetry Protocol (OTLP) exporter to the MeterProvider.
|
|
/// </summary>
|
|
/// <param name="builder"><see cref="MeterProviderBuilder"/> builder to use.</param>
|
|
/// <param name="configure">Exporter configuration options.</param>
|
|
/// <returns>The instance of <see cref="MeterProviderBuilder"/> to chain the calls.</returns>
|
|
public static MeterProviderBuilder AddOtlpExporter(this MeterProviderBuilder builder, Action<OtlpExporterOptions> configure = null)
|
|
{
|
|
if (builder == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(builder));
|
|
}
|
|
|
|
var options = new OtlpExporterOptions();
|
|
configure?.Invoke(options);
|
|
return builder.AddMetricProcessor(new PushMetricProcessor(new OtlpMetricsExporter(options), options.MetricExportIntervalMilliSeconds, options.IsDelta));
|
|
}
|
|
}
|
|
}
|