File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
x-pack/plugins/observability
typings/fetch_overview_data Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ const EuiCardWithoutPadding = styled(EuiCard)`
3030` ;
3131
3232export function LandingPage ( ) {
33- useTrackPageview ( { app : 'observability' , path : 'landing' } ) ;
34- useTrackPageview ( { app : 'observability' , path : 'landing' , delay : 15000 } ) ;
33+ useTrackPageview ( { app : 'observability-overview ' , path : 'landing' } ) ;
34+ useTrackPageview ( { app : 'observability-overview ' , path : 'landing' , delay : 15000 } ) ;
3535
3636 const { core } = usePluginContext ( ) ;
3737 const theme = useContext ( ThemeContext ) ;
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ export function OverviewPage({ routeParams }: Props) {
5555 end : getAbsoluteTime ( relativeTime . end , { roundUp : true } ) as number ,
5656 } ;
5757
58- useTrackPageview ( { app : 'observability' , path : 'overview' } ) ;
59- useTrackPageview ( { app : 'observability' , path : 'overview' , delay : 15000 } ) ;
58+ useTrackPageview ( { app : 'observability-overview ' , path : 'overview' } ) ;
59+ useTrackPageview ( { app : 'observability-overview ' , path : 'overview' , delay : 15000 } ) ;
6060
6161 const { data : alerts = [ ] , status : alertStatus } = useFetcher ( ( ) => {
6262 return getObservabilityAlerts ( { core } ) ;
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export type HasData = (params?: HasDataParams) => Promise<HasDataResponse>;
4747
4848export type ObservabilityFetchDataPlugins = Exclude <
4949 ObservabilityApp ,
50- 'observability' | 'stack_monitoring'
50+ 'observability-overview ' | 'stack_monitoring'
5151> ;
5252
5353export interface DataHandler <
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type ObservabilityApp =
99 | 'infra_logs'
1010 | 'apm'
1111 | 'uptime'
12- | 'observability'
12+ | 'observability-overview '
1313 | 'stack_monitoring'
1414 | 'ux' ;
1515
You can’t perform that action at this time.
0 commit comments