[Discover][Oblt] Enable Attributes tab by default (#224894)

## Summary

closes https://github.com/elastic/kibana/issues/224883
This commit is contained in:
Katerina 2025-06-25 16:41:45 +03:00 committed by GitHub
parent 05b4fdd854
commit 0e932d031e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@ export const createObservabilityRootProfileProviderWithAttributesTab = (
) =>
extendProfileProvider(observabilityRootProfileProvider, {
profileId: 'observability-root-profile-with-attributes-tab',
isExperimental: true,
isExperimental: false,
profile: {
getDocViewer,
},

View file

@ -63,7 +63,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
});
expect(events[events.length - 1].context.discoverProfiles).to.eql([
'observability-root-profile',
'observability-root-profile-with-attributes-tab',
'default-data-source-profile',
]);
});
@ -83,7 +83,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
});
expect(events[events.length - 1].context.discoverProfiles).to.eql([
'observability-root-profile',
'observability-root-profile-with-attributes-tab',
'observability-logs-data-source-profile',
]);
@ -162,7 +162,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
expect(events[0].properties).to.eql({
contextLevel: 'rootLevel',
profileId: 'observability-root-profile',
profileId: 'observability-root-profile-with-attributes-tab',
});
expect(events[1].properties).to.eql({
@ -447,7 +447,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
});
expect(event3.context.discoverProfiles).to.eql([
'observability-root-profile',
'observability-root-profile-with-attributes-tab',
'observability-logs-data-source-profile',
]);
});