Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix accidental public api change.
  • Loading branch information
rajkumar-rangaraj committed Nov 19, 2025
commit c98402360b4ecaed710a87a7b01976e33a6056f6
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private static string GetSdkVersion()
/// <summary>
/// Specifies the type of SDK for telemetry identification and version labeling.
/// </summary>
public enum SdkVersionType
internal enum SdkVersionType
{
/// <summary>Default Azure Monitor OpenTelemetry Exporter.</summary>
Exporter,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class CustomerSdkStatsDimensionsTests
[InlineData(SdkVersionType.ShimAspNetCore, "dotnet-core")]
[InlineData(SdkVersionType.ShimWorkerService, "dotnet-worker")]
[InlineData(SdkVersionType.ShimWeb, "dotnet-web")]
public void GetBaseTags_SetsCorrectLanguageDimensionForEachSdkVersionType(SdkVersionType versionType, string expectedLanguage)
internal void GetBaseTags_SetsCorrectLanguageDimensionForEachSdkVersionType(SdkVersionType versionType, string expectedLanguage)
{
// Arrange
var originalVersionType = SdkVersionUtils.s_sdkVersionType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void DoesNotSetSdkDistroLabelForWrongValueFromResource()
[InlineData("Microsoft.ApplicationInsights.AspNetCore", "shc", SdkVersionType.ShimAspNetCore)]
[InlineData("Microsoft.ApplicationInsights.WorkerService", "shw", SdkVersionType.ShimWorkerService)]
[InlineData("Microsoft.ApplicationInsights.Web", "shf", SdkVersionType.ShimWeb)]
public void SetsSdkShimLabelForAllShimPackages(string distroName, string expectedLabel, SdkVersionType expectedType)
internal void SetsSdkShimLabelForAllShimPackages(string distroName, string expectedLabel, SdkVersionType expectedType)
{
// SDK version is static, preserve to clean up later.
var sdkVersion = SdkVersionUtils.s_sdkVersion;
Expand Down
Loading