Add launcher type and cluster URL to root execution span#255
Open
morgan-wowk wants to merge 1 commit into
Open
Add launcher type and cluster URL to root execution span#255morgan-wowk wants to merge 1 commit into
morgan-wowk wants to merge 1 commit into
Conversation
This was referenced May 22, 2026
Collaborator
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
57ba606 to
54e0001
Compare
3aa355d to
3e85d85
Compare
54e0001 to
6f8a30a
Compare
execution.launcher = top-level key from launcher_data (e.g. 'kubernetes', 'kubernetes_job', 'skypilot') distinguishes launcher mechanism. k8s.cluster.url on root span allows GKE vs Nebius cluster identification by URL pattern in oasis-backend's multi-cloud setup.
3e85d85 to
239a70c
Compare
6f8a30a to
a8e9b03
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

Add
execution.launcherandexecution.cloud_providerOTel trace attributes to root execution spanexecution.launcheris derived from the top-level key oflauncher_data(e.g.kubernetes,kubernetes_job,skypilot) and distinguishes the launcher mechanism used for a given execution.k8s.cluster.urlon the root span allows GKE vs Nebius cluster identification by URL pattern in oasis-backend's multi-cloud setup, populated fromcluster_serverinside the launcher's data block.execution.cloud_provideris read from thecloud-pipelines.net/orchestration/cloud_providertask_spec annotation, set at routing time by callers such asMultiLauncherContainerLauncher. This enables traces to be searched by cloud provider (e.g.gke,nebius) without relying on URL pattern matching against cluster hostnames. Launchers with a fixed cloud affinity can also set this annotation directly.The
CLOUD_PROVIDER_ANNOTATION_KEYconstant is defined incommon_annotationsso it can be shared across launchers and the tracing layer without duplication.Screenshots