Skip to content
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

fix(slo): Overview Embeddable drilldown actions #201870

Merged
merged 12 commits into from
Dec 3, 2024
2 changes: 1 addition & 1 deletion x-pack/plugins/embeddable_enhanced/kibana.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@elastic/kibana-presentation"
],
"group": "platform",
"visibility": "private",
"visibility": "shared",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@elastic/kibana-presentation this PR opens up embeddableEnhanced so that it is used directly from solutions (in this case from o11y SLOs).

Up until now, it was only used from "platform" plugins (e.g. visualizations, dashboard_enhanced, lens, maps).

Are you okay with that transition to "shared"?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes this makes sense IMO. Solutions are expected to register embeddable types, and some of those will use drilldowns.

"description": "Extends embeddable plugin with more functionality",
"plugin": {
"id": "embeddableEnhanced",
Expand Down
32 changes: 17 additions & 15 deletions x-pack/plugins/observability_solution/slo/kibana.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -21,40 +21,42 @@
"charts",
"dashboard",
"data",
"dataViews",
"discoverShared",
"lens",
"dataViewEditor",
"dataViewFieldEditor",
"dataViews",
"discoverShared",
"embeddable",
"features",
"fieldFormats",
"lens",
"licensing",
"observability",
"observabilityShared",
"presentationUtil",
"ruleRegistry",
"share",
"taskManager",
"triggersActionsUi",
"share",
"unifiedSearch",
"uiActions",
"embeddable",
"presentationUtil",
"features",
"licensing",
"usageCollection",
"unifiedSearch",
"usageCollection"
],
"optionalPlugins": [
"cloud",
"serverless",
"discover",
"embeddableEnhanced",
"observabilityAIAssistant",
"spaces",
"security",
"serverless",
"spaces"
],
"requiredBundles": [
"controls",
"embeddable",
"ingestPipelines",
"kibanaReact",
"kibanaUtils",
"unifiedSearch",
"embeddable",
"ingestPipelines"
"unifiedSearch"
]
}
}
Loading