ResilienceTelemetrySource
The source of resilience telemetry events.
            
                using System.Runtime.CompilerServices;
namespace Polly.Telemetry
{
    [System.Runtime.CompilerServices.NullableContext(2)]
    [System.Runtime.CompilerServices.Nullable(0)]
    public sealed class ResilienceTelemetrySource
    {
        public string PipelineName { get; }
        public string PipelineInstanceName { get; }
        public string StrategyName { get; }
        public ResilienceTelemetrySource(string pipelineName, string pipelineInstanceName, string strategyName)
        {
            PipelineName = pipelineName;
            PipelineInstanceName = pipelineInstanceName;
            StrategyName = strategyName;
        }
    }
}