mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
[Discover][Oblt] Enable Attributes tab by default (#224894)
## Summary closes https://github.com/elastic/kibana/issues/224883
This commit is contained in:
parent
05b4fdd854
commit
0e932d031e
2 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@ export const createObservabilityRootProfileProviderWithAttributesTab = (
|
||||||
) =>
|
) =>
|
||||||
extendProfileProvider(observabilityRootProfileProvider, {
|
extendProfileProvider(observabilityRootProfileProvider, {
|
||||||
profileId: 'observability-root-profile-with-attributes-tab',
|
profileId: 'observability-root-profile-with-attributes-tab',
|
||||||
isExperimental: true,
|
isExperimental: false,
|
||||||
profile: {
|
profile: {
|
||||||
getDocViewer,
|
getDocViewer,
|
||||||
},
|
},
|
||||||
|
|
|
@ -63,7 +63,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(events[events.length - 1].context.discoverProfiles).to.eql([
|
expect(events[events.length - 1].context.discoverProfiles).to.eql([
|
||||||
'observability-root-profile',
|
'observability-root-profile-with-attributes-tab',
|
||||||
'default-data-source-profile',
|
'default-data-source-profile',
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
@ -83,7 +83,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(events[events.length - 1].context.discoverProfiles).to.eql([
|
expect(events[events.length - 1].context.discoverProfiles).to.eql([
|
||||||
'observability-root-profile',
|
'observability-root-profile-with-attributes-tab',
|
||||||
'observability-logs-data-source-profile',
|
'observability-logs-data-source-profile',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
|
||||||
|
|
||||||
expect(events[0].properties).to.eql({
|
expect(events[0].properties).to.eql({
|
||||||
contextLevel: 'rootLevel',
|
contextLevel: 'rootLevel',
|
||||||
profileId: 'observability-root-profile',
|
profileId: 'observability-root-profile-with-attributes-tab',
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(events[1].properties).to.eql({
|
expect(events[1].properties).to.eql({
|
||||||
|
@ -447,7 +447,7 @@ export default function ({ getService, getPageObjects }: ObservabilityTelemetryF
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(event3.context.discoverProfiles).to.eql([
|
expect(event3.context.discoverProfiles).to.eql([
|
||||||
'observability-root-profile',
|
'observability-root-profile-with-attributes-tab',
|
||||||
'observability-logs-data-source-profile',
|
'observability-logs-data-source-profile',
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue