You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
move pattern analysis embeddable reference handling to server (#244421)
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 pattern
analysis embeddable. On write, dashboard uses `transformIn` to extract
data view reference. On read, dashboard users `transformOut` to inject
data view reference. In this way, the REST API and pattern analysis
embeddable client code no longer need to account for references as all
reference handling is done on the server.
---------
Co-authored-by: Elastic Machine <[email protected]>
Copy file name to clipboardExpand all lines: x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/discover_tabs.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,10 +17,10 @@ import type { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/type
Copy file name to clipboardExpand all lines: x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/embeddable_menu.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,8 @@ import { i18n } from '@kbn/i18n';
Copy file name to clipboardExpand all lines: x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/minimum_time_range.ts
Copy file name to clipboardExpand all lines: x-pack/platform/plugins/shared/aiops/public/components/log_categorization/log_categorization_for_embeddable/use_minimum_time_range.ts
Copy file name to clipboardExpand all lines: x-pack/platform/plugins/shared/aiops/public/components/log_categorization/sampling_menu/sampling_panel.tsx
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,10 +12,12 @@ import { i18n } from '@kbn/i18n';
0 commit comments