-
Notifications
You must be signed in to change notification settings - Fork 778
/
SuppressInstrumentationScope.cs
125 lines (109 loc) · 4.25 KB
/
SuppressInstrumentationScope.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// <copyright file="SuppressInstrumentationScope.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.Runtime.CompilerServices;
using OpenTelemetry.Context;
namespace OpenTelemetry
{
public sealed class SuppressInstrumentationScope : IDisposable
{
// An integer value which controls whether instrumentation should be suppressed (disabled).
// * 0: instrumentation is not suppressed
// * [int.MinValue, -1]: instrumentation is always suppressed
// * [1, int.MaxValue]: instrumentation is suppressed in a reference-counting mode
private static readonly RuntimeContextSlot<int> Slot = RuntimeContext.RegisterSlot<int>("otel.suppress_instrumentation");
private readonly int previousValue;
private bool disposed;
internal SuppressInstrumentationScope(bool value = true)
{
this.previousValue = Slot.Get();
Slot.Set(value ? -1 : 0);
}
internal static bool IsSuppressed => Slot.Get() != 0;
/// <summary>
/// Begins a new scope in which instrumentation is suppressed (disabled).
/// </summary>
/// <param name="value">Value indicating whether to suppress instrumentation.</param>
/// <returns>Object to dispose to end the scope.</returns>
/// <remarks>
/// This is typically used to prevent infinite loops created by
/// collection of internal operations, such as exporting traces over HTTP.
/// <code>
/// public override async Task<ExportResult> ExportAsync(
/// IEnumerable<Activity> batch,
/// CancellationToken cancellationToken)
/// {
/// using (SuppressInstrumentationScope.Begin())
/// {
/// // Instrumentation is suppressed (i.e., Sdk.SuppressInstrumentation == true)
/// }
///
/// // Instrumentation is not suppressed (i.e., Sdk.SuppressInstrumentation == false)
/// }
/// </code>
/// </remarks>
public static IDisposable Begin(bool value = true)
{
return new SuppressInstrumentationScope(value);
}
/// <summary>
/// Enters suppression mode.
/// If suppression mode is enabled (slot is a negative integer), do nothing.
/// If suppression mode is not enabled (slot is zero), enter reference-counting suppression mode.
/// If suppression mode is enabled (slot is a positive integer), increment the ref count.
/// </summary>
/// <returns>The updated suppression slot value.</returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static int Enter()
{
var value = Slot.Get();
if (value >= 0)
{
Slot.Set(++value);
}
return value;
}
/// <inheritdoc/>
public void Dispose()
{
if (!this.disposed)
{
Slot.Set(this.previousValue);
this.disposed = true;
}
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static int IncrementIfTriggered()
{
var value = Slot.Get();
if (value > 0)
{
Slot.Set(++value);
}
return value;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static int DecrementIfTriggered()
{
var value = Slot.Get();
if (value > 0)
{
Slot.Set(--value);
}
return value;
}
}
}