-
Notifications
You must be signed in to change notification settings - Fork 4
feat: distro attributetes in telemetry #453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+94
−76
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3098277
renaming to ObservabilityService to match Swift
abelonogov-ld ecb214e
Remove instrumentation manager
abelonogov-ld b34ffb8
Refactor opentelemetry testing
abelonogov-ld 4264286
revert incubator
abelonogov-ld 2941a91
address feedback
abelonogov-ld b77c4ca
minus 3 dependency
abelonogov-ld bbc5f43
Merge branch 'main' into andrey/open-telemetry-testing
abelonogov-ld bf0a4c1
simplify maui projects to do not have repetitions
abelonogov-ld 996cdda
pass maui version as "maui-observability-version"
abelonogov-ld 0a22270
nicier way to get maui version
abelonogov-ld 54fb3b3
Merge branch 'main' into andrey/open-telemetry-testing
abelonogov-ld f1e1ff3
refactor: update OpenTelemetry JAR handling in project files
abelonogov-ld 53b04cb
Merge branch 'andrey/open-telemetry-testing' into andrey/simpligy-mau…
abelonogov-ld fb0458e
doesn't account version
abelonogov-ld 2803207
Merge branch 'andrey/simpligy-maui-projects' into andrey/match-attrib…
abelonogov-ld 73c0e2d
Merge branch 'main' into andrey/match-attributes
abelonogov-ld 5f349e1
maui distro attributes
abelonogov-ld fe345ce
update test app
abelonogov-ld ff10f77
Merge branch 'main' into andrey/match-attributes
abelonogov-ld 474b14a
fix passing version
abelonogov-ld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
40 changes: 40 additions & 0 deletions
40
sdk/@launchdarkly/mobile-dotnet/macios/native/LDObserve/Sources/OptionsBridge.swift
This file contains hidden or 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,40 @@ | ||
| import Foundation | ||
|
|
||
| @objc(ObjcObservabilityOptions) | ||
| public final class ObjcObservabilityOptions: NSObject { | ||
| @objc public var serviceName: String = "" | ||
| @objc public var serviceVersion: String = "" | ||
| @objc public var otlpEndpoint: String = "" | ||
| @objc public var backendUrl: String = "" | ||
| @objc public var attributes: NSDictionary? | ||
|
|
||
| @objc public override init() { | ||
| super.init() | ||
| } | ||
| } | ||
|
|
||
| @objc(ObjcSessionReplayOptions) | ||
| public final class ObjcSessionReplayOptions: NSObject { | ||
| @objc public var isEnabled: Bool = true | ||
| @objc public var maskTextInputs: Bool = true | ||
| @objc public var maskWebViews: Bool = false | ||
| @objc public var maskLabels: Bool = false | ||
| @objc public var maskImages: Bool = false | ||
|
|
||
| @objc public override init() { | ||
| super.init() | ||
| } | ||
| } | ||
|
|
||
| @objc(ObjcEnvironmentMetadata) | ||
| public final class ObjcEnvironmentMetadata: NSObject { | ||
| @objc public var credential: String = "" | ||
| @objc public var sdkName: String = "" | ||
| @objc public var sdkVersion: String = "" | ||
| @objc public var applicationId: String = "" | ||
| @objc public var applicationVersion: String = "" | ||
|
|
||
| @objc public override init() { | ||
| super.init() | ||
| } | ||
| } |
2 changes: 1 addition & 1 deletion
2
sdk/@launchdarkly/mobile-dotnet/observability/Directory.Build.props
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.