-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* First prototype * Use plugin manager to organize plugin loading. Add possibility to load multiple plugins. * PR cleanup and fixes * Fix plugin file name loading * Fix vendoring sample references * Fix comments * refactor and add logging * Fix plugin load logging * Refactor plugins passing to tracer * remove static property * PR fixes and tests * Refactor extendability points loading * Refactor plugin with target framework loading * Flatten propagators extension point * Add logging for plugin config parsing error and fix comment * Refactor composite propagator
- Loading branch information
Showing
51 changed files
with
722 additions
and
142 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
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
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace Datadog.Trace.Configuration.Types | ||
{ | ||
/// <summary> | ||
/// Contains default available propagator types. | ||
/// </summary> | ||
public static class PropagatorTypes | ||
{ | ||
/// <summary> | ||
/// The Datadog propagator. | ||
/// </summary> | ||
public const string Datadog = "Datadog"; | ||
|
||
/// <summary> | ||
/// The B3 propagator | ||
/// </summary> | ||
public const string B3 = "B3"; | ||
|
||
/// <summary> | ||
/// The W3C propagator | ||
/// </summary> | ||
public const string W3C = "W3C"; | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace Datadog.Trace.Plugins | ||
{ | ||
/// <summary> | ||
/// Base marker interface for extendability points. | ||
/// </summary> | ||
public interface IOTelExtension | ||
{ | ||
} | ||
} |
Oops, something went wrong.