TelemetryUtil
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace Polly.Telemetry
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
internal static class TelemetryUtil
{
internal const string PollyDiagnosticSource = "Polly";
[System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})]
internal static readonly ResiliencePropertyKey<string> StrategyKey = new ResiliencePropertyKey<string>("Polly.StrategyKey");
public static ResilienceStrategyTelemetry CreateTelemetry([System.Runtime.CompilerServices.Nullable(2)] DiagnosticSource diagnosticSource, [System.Runtime.CompilerServices.Nullable(2)] string builderName, ResilienceProperties builderProperties, [System.Runtime.CompilerServices.Nullable(2)] string strategyName, string strategyType)
{
return new ResilienceStrategyTelemetry(new ResilienceTelemetrySource(builderName, builderProperties, strategyName, strategyType), diagnosticSource);
}
}
}