-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into nuget_packages_update_21986898
- Loading branch information
Showing
5 changed files
with
56 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 7 additions & 2 deletions
9
src/Abstractions/Option/MonitoringOption.cs → src/Activities/Option/ActivityOption.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. | ||
|
||
namespace Microsoft.Omex.Extensions.Abstractions.Option | ||
namespace Microsoft.Omex.Extensions.Activities | ||
{ | ||
/// <summary> | ||
/// Monitoring option | ||
/// </summary> | ||
public class MonitoringOption | ||
public class ActivityOption | ||
{ | ||
/// <summary> | ||
/// Path to the setting | ||
/// </summary> | ||
public static string MonitoringPath = "Monitoring"; | ||
|
||
/// <summary> | ||
/// Disable ActivityEventSender so Activity metric is only sent via ActivityMetricsSender | ||
/// </summary> | ||
public bool ActivityEventSenderEnabled { get; set; } = true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters