Skip to content

Commit

Permalink
[Onboarding] Remove System Logs onboarding flow (#196132)
Browse files Browse the repository at this point in the history
Closes #192815

Removes the legacy System Logs onboarding flow as it now has been
replaced by the Auto-Detect flow.
  • Loading branch information
mykolaharmash authored Oct 17, 2024
1 parent e92e020 commit db574f4
Show file tree
Hide file tree
Showing 25 changed files with 20 additions and 1,577 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ import { SerializableRecord } from '@kbn/utility-types';
export const OBSERVABILITY_ONBOARDING_LOCATOR = 'OBSERVABILITY_ONBOARDING_LOCATOR' as const;

export interface ObservabilityOnboardingLocatorParams extends SerializableRecord {
/** If given, it will load the given map else will load the create a new map page. */
source?: 'customLogs' | 'systemLogs';
/** If given, it will load the given onboarding flow
* else will load the main onboarding screen.
*/
source?: 'auto-detect' | 'customLogs' | 'kubernetes' | 'otel-logs' | 'firehose';
category?: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@
*/

export * from './custom_logs/generate_custom_logs_yml';
export * from './system_logs/generate_system_logs_yml';

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ describe.skip('[Logs onboarding] Give Feedback', () => {
cy.visitKibana('/app/observabilityOnboarding');
});

it('feedback button is present in system logs onboarding', () => {
cy.getByTestSubj('obltOnboardingHomeStartSystemLogStream').click();
cy.getByTestSubj('observabilityOnboardingPageGiveFeedback').should('exist');
});

it('feedback button is present in custom logs onboarding', () => {
cy.getByTestSubj('obltOnboardingHomeStartLogFileStream').click();
cy.getByTestSubj('observabilityOnboardingPageGiveFeedback').should('exist');
Expand Down
Loading

0 comments on commit db574f4

Please sign in to comment.