move stats overview embeddable references to server#244240
Merged
nreese merged 11 commits intoelastic:mainfrom Dec 4, 2025
Merged
move stats overview embeddable references to server#244240nreese merged 11 commits intoelastic:mainfrom
nreese merged 11 commits intoelastic:mainfrom
Conversation
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
|
Pinging @elastic/kibana-presentation (Team:Presentation) |
Contributor
Author
|
@elasticmachine merge upstream |
Contributor
|
Pinging @elastic/obs-ux-management-team (Team:obs-ux-management) |
Contributor
Author
|
@elasticmachine merge upstream |
Contributor
Author
|
@elasticmachine merge upstream |
baileycash-elastic
approved these changes
Dec 4, 2025
Contributor
baileycash-elastic
left a comment
There was a problem hiding this comment.
Synthetics embeddables and drilldown work as expected
Contributor
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]Module Count
Async chunks
Page load bundle
History
|
wildemat
pushed a commit
to wildemat/kibana
that referenced
this pull request
Dec 5, 2025
Part of elastic#222615 Part of "Dashboards as code" project involves moving reference handling from client to server. References add complexity to dashboard REST API. Moving reference handling to server removes references from dashboard REST API. This PR registers transformIn and transformOut methods for stats overview embeddable. On write, dashboard uses `transformIn` to extract drilldown references. On read, dashboard users `transformOut` to inject drilldown references. In this way, the REST API and stats overview embeddable client code no longer need to account for references as all reference handling is done on the server. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This was referenced Dec 5, 2025
JordanSh
pushed a commit
to JordanSh/kibana
that referenced
this pull request
Dec 9, 2025
Part of elastic#222615 Part of "Dashboards as code" project involves moving reference handling from client to server. References add complexity to dashboard REST API. Moving reference handling to server removes references from dashboard REST API. This PR registers transformIn and transformOut methods for stats overview embeddable. On write, dashboard uses `transformIn` to extract drilldown references. On read, dashboard users `transformOut` to inject drilldown references. In this way, the REST API and stats overview embeddable client code no longer need to account for references as all reference handling is done on the server. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
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.
Part of #222615
Part of "Dashboards as code" project involves moving reference handling from client to server. References add complexity to dashboard REST API. Moving reference handling to server removes references from dashboard REST API.
This PR registers transformIn and transformOut methods for stats overview embeddable. On write, dashboard uses
transformInto extract drilldown references. On read, dashboard userstransformOutto inject drilldown references. In this way, the REST API and stats overview embeddable client code no longer need to account for references as all reference handling is done on the server.