mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Enable execution context tracking for SLO, infra and synthetics plugins (#204939)
## Summary This PR enables default execution context tracking (which was added in this [PR](https://github.com/elastic/kibana/pull/204547)) for the following plugins: - SLO - Infra - Synthetics |Plugin|Before|After| |---|---|---| |SLO|| |Synthetics|| |Infra > Inventory|| |Infra > Hosts||
This commit is contained in:
parent
576a231c71
commit
2e92018553
3 changed files with 3 additions and 3 deletions
|
@ -118,7 +118,7 @@ export const InfrastructurePage = () => {
|
|||
</HeaderMenuPortal>
|
||||
)}
|
||||
|
||||
<Routes>
|
||||
<Routes enableExecutionContextTracking={true}>
|
||||
<Route path="/inventory" component={SnapshotPage} />
|
||||
{config.featureFlags.metricsExplorerEnabled && (
|
||||
<Route path="/explorer" component={MetricsExplorerPage} />
|
||||
|
|
|
@ -145,7 +145,7 @@ function App() {
|
|||
const routes = getRoutes(isServerless);
|
||||
|
||||
return (
|
||||
<Routes>
|
||||
<Routes enableExecutionContextTracking={true}>
|
||||
{Object.keys(routes).map((path) => {
|
||||
const { handler, exact } = routes[path];
|
||||
const Wrapper = () => {
|
||||
|
|
|
@ -189,7 +189,7 @@ export const PageRouter: FC = () => {
|
|||
const isUnprivileged = useSyntheticsPrivileges();
|
||||
|
||||
return (
|
||||
<Routes>
|
||||
<Routes enableExecutionContextTracking={true}>
|
||||
{routes.map(
|
||||
({
|
||||
title,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue