Skip to content

Commit

Permalink
search: removing app search & enterprise search node related items
Browse files Browse the repository at this point in the history
  • Loading branch information
TattdCodeMonkey committed Dec 19, 2024
1 parent 7cfa396 commit 1166e1a
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 698 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ interface MainProps {
}

const exampleGuideIds: GuideId[] = [
'appSearch',
'websiteSearch',
'databaseSearch',
'siem',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,22 +72,6 @@ export const guideCards: GuideCardConstants[] = [
telemetryId: 'onboarding--search--ai',
order: 7,
},
{
solution: 'search',
icon: 'wrench',
title: (
<FormattedMessage
id="guidedOnboardingPackage.gettingStarted.cards.appSearch.title"
defaultMessage="Build an application on {lineBreak} top of Elasticsearch"
values={{
lineBreak: <br />,
}}
/>
),
guideId: 'appSearch',
telemetryId: 'onboarding--search--application',
order: 10,
},
{
solution: 'search',
icon: 'search',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,22 +84,6 @@ export const guideCards: GuideCardConstants[] = [
telemetryId: 'onboarding--search--ai',
order: 7,
},
{
solution: 'search',
icon: 'wrench',
title: (
<FormattedMessage
id="guidedOnboardingPackage.gettingStarted.cards.appSearch.title"
defaultMessage="Build an application on {lineBreak} top of Elasticsearch"
values={{
lineBreak: <br />,
}}
/>
),
guideId: 'appSearch',
telemetryId: 'onboarding--search--application',
order: 10,
},
{
solution: 'search',
icon: 'search',
Expand Down
8 changes: 1 addition & 7 deletions packages/kbn-guided-onboarding/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,7 @@
* License v3.0 only", or the "Server Side Public License, v 1".
*/

export type GuideId =
| 'kubernetes'
| 'siem'
| 'appSearch'
| 'websiteSearch'
| 'databaseSearch'
| 'testGuide';
export type GuideId = 'kubernetes' | 'siem' | 'websiteSearch' | 'databaseSearch' | 'testGuide';

type KubernetesStepIds = 'add_data' | 'view_dashboard' | 'tour_observability';
type SiemStepIds = 'add_data' | 'rules' | 'alertsCases';
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/guided_onboarding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ The value of the parameter `indexID` needs to be passed to the API service when
## Guides config
To use the API service, you need to know a guide ID (currently one of `appSearch`, `websiteSearch`, `databaseSearch`, `kubernetes`, `siem`) and a step ID (for example, `add_data`, `search_experience`, `rules` etc). The consumers of guided onboarding register their guide configs themselves and have therefore full control over the guide ID and step IDs used for their guide. For more details on registering a guide config, see below.
To use the API service, you need to know a guide ID (currently one of `websiteSearch`, `databaseSearch`, `kubernetes`, `siem`) and a step ID (for example, `add_data`, `search_experience`, `rules` etc). The consumers of guided onboarding register their guide configs themselves and have therefore full control over the guide ID and step IDs used for their guide. For more details on registering a guide config, see below.
## Server side: register a guide config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ export const applicationUsageSchema = {
enterpriseSearchVectorSearch: commonSchema,
enterpriseSearchElasticsearch: commonSchema,
entity_manager: commonSchema,
appSearch: commonSchema,
workplaceSearch: commonSchema,
searchExperiences: commonSchema,
graph: commonSchema,
logs: commonSchema,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ const uiMetricFromDataPluginSchema: MakeSchemaFrom<UIMetricUsage> = {
csm: commonSchema,
canvas: commonSchema,
enterpriseSearch: commonSchema,
appSearch: commonSchema,
workplaceSearch: commonSchema,
graph: commonSchema,
logs: commonSchema,
metrics: commonSchema,
Expand Down
Loading

0 comments on commit 1166e1a

Please sign in to comment.