-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Updating OT Exporter to align with latest mappings spec #17392
Conversation
Co-authored-by: Zachary Foster <[email protected]>
This pull request is protected by Check Enforcer. What is Check Enforcer?Check Enforcer helps ensure all pull requests are covered by at least one check-run (typically an Azure Pipeline). When all check-runs associated with this pull request pass then Check Enforcer itself will pass. Why am I getting this message?You are getting this message because Check Enforcer did not detect any check-runs being associated with this pull request within five minutes. This may indicate that your pull request is not covered by any pipelines and so Check Enforcer is correctly blocking the pull request being merged. What should I do now?If the check-enforcer check-run is not passing and all other check-runs associated with this PR are passing (excluding license-cla) then you could try telling Check Enforcer to evaluate your pull request again. You can do this by adding a comment to this pull request as follows: What if I am onboarding a new service?Often, new services do not have validation pipelines associated with them, in order to bootstrap pipelines for a new service, you can issue the following command as a pull request comment: |
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
key.startsWith("peer.") || | ||
key.startsWith("net.") | ||
) | ||
) { | ||
properties[key] = span.attributes[key] as string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at max lengths, key and value should be truncated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not adding truncation in this PR, will address that later, created a task for it
key.startsWith("peer.") || | ||
key.startsWith("net.") | ||
) | ||
) { | ||
properties[key] = span.attributes[key] as string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Truncation rules for custom properties need to be applied. _MS.links
needs to be a valid JSON after truncation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So you need to parse the JSON and remove links, stringify it again and keep trying until size is allowed, will address in different PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since links are a fixed length, we can do some math and allow only up to a certain amount of links :D
if (span.kind === SpanKind.PRODUCER) { | ||
baseData.type = DependencyTypes.QueueMessage; | ||
} | ||
if (span.kind === SpanKind.INTERNAL && span.parentSpanId) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious as to why span.parentSpanId
needs to be populated as well for this to be INPROC
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is mentioned in the spec here https://github.com/microsoft/common-schema/blob/main/Mappings/AzureMonitor-AI.md#remotedependencytype
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm what about INTERNAL
spans without parents? Those are quite common and type
won't be populated? I will bring this up in specs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update: This topic is still up for discussion. Leaving as it is for now.
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
if (target) { | ||
let url = new URL(target); | ||
// Ignore port if it is a default port | ||
if (url.port === "80" || url.port === "443") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't url.port
be Null
if target
was populated by httpUrl
, netPeerName
or netPeerIp
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is supposed to, users can add whatever in these fields so new Regex logic will take care of wrong values as well
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
remoteDependencyData.resultCode = String(grpcStatusCode); | ||
} | ||
let target = getTarget(span); | ||
if (target) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this logic for target
specified for rpc
yet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In case of rpc:
Derive target from peerService or net* attributes as above.
Default: If none of the above are available, assign rpcSystem to target.
if (span.kind === SpanKind.PRODUCER) { | ||
baseData.type = DependencyTypes.QueueMessage; | ||
} | ||
if (span.kind === SpanKind.INTERNAL && span.parentSpanId) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I think data.success=True
always for Internal
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even if explicitly set to error?, that sounds weird
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
sdk/monitor/monitor-opentelemetry-exporter/src/utils/spanUtils.ts
Outdated
Show resolved
Hide resolved
@hectorhdzg I have pushed a commit to your branch to resolve a merge conflict caused here by a PR of mine that I had merged. Please pull in the latest in case you plan to add more changes |
https://github.com/microsoft/common-schema/blob/main/Mappings/AzureMonitor-AI.md
https://github.com/microsoft/common-schema/blob/main/Mappings/OTelSemanticConvention.md