Skip to content

Commit

Permalink
Mark MultiTypePropertyFetcher as internal (open-telemetry#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
utpilla authored May 24, 2022
1 parent 482ba4e commit 6bd6c22
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace OpenTelemetry.Instrumentation
/// PropertyFetcher fetches a property from an object.
/// </summary>
/// <typeparam name="T">The type of the property being fetched.</typeparam>
public class MultiTypePropertyFetcher<T>
internal class MultiTypePropertyFetcher<T>
{
private readonly string propertyName;
private readonly ConcurrentDictionary<Type, PropertyFetch> innerFetcher = new ConcurrentDictionary<Type, PropertyFetch>();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
OpenTelemetry.Instrumentation.MultiTypePropertyFetcher<T>
OpenTelemetry.Instrumentation.MultiTypePropertyFetcher<T>.Fetch(object obj) -> T
OpenTelemetry.Instrumentation.MultiTypePropertyFetcher<T>.MultiTypePropertyFetcher(string propertyName) -> void
OpenTelemetry.Instrumentation.StackExchangeRedis.StackExchangeRedisCallsInstrumentationOptions
OpenTelemetry.Instrumentation.StackExchangeRedis.StackExchangeRedisCallsInstrumentationOptions.Enrich.get -> System.Action<System.Diagnostics.Activity, StackExchange.Redis.Profiling.IProfiledCommand>
OpenTelemetry.Instrumentation.StackExchangeRedis.StackExchangeRedisCallsInstrumentationOptions.Enrich.set -> void
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
OpenTelemetry.Instrumentation.MultiTypePropertyFetcher<T>
OpenTelemetry.Instrumentation.MultiTypePropertyFetcher<T>.Fetch(object obj) -> T
OpenTelemetry.Instrumentation.MultiTypePropertyFetcher<T>.MultiTypePropertyFetcher(string propertyName) -> void
OpenTelemetry.Instrumentation.StackExchangeRedis.StackExchangeRedisCallsInstrumentationOptions
OpenTelemetry.Instrumentation.StackExchangeRedis.StackExchangeRedisCallsInstrumentationOptions.Enrich.get -> System.Action<System.Diagnostics.Activity, StackExchange.Redis.Profiling.IProfiledCommand>
OpenTelemetry.Instrumentation.StackExchangeRedis.StackExchangeRedisCallsInstrumentationOptions.Enrich.set -> void
Expand Down

0 comments on commit 6bd6c22

Please sign in to comment.