Skip to content

Commit

Permalink
Exclude last-use-logs-viewer from app usage tracking.
Browse files Browse the repository at this point in the history
  • Loading branch information
awahab07 committed Oct 4, 2024
1 parent 427efd7 commit edfc3b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export const applicationUsageSchema = {
monitoring: commonSchema,
'observability-log-explorer': commonSchema,
'observability-logs-explorer': commonSchema,
'last-used-logs-viewer': commonSchema,
'observability-overview': commonSchema,
observabilityOnboarding: commonSchema,
observabilityAIAssistant: commonSchema,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
try {
const enabledAppIds = Object.keys(applicationUsageSchema).filter(
// Profiling is currently disabled by default as it's in closed beta
(appId) => appId !== 'profiling'
// last-used-logs-viewer is a only redirection wrapper for the logs apps and should not be tracked
(appId) => appId !== 'profiling' && appId !== 'last-used-logs-viewer'
);
expect(enabledAppIds.sort()).to.eql(appIds.sort());
} catch (err) {
Expand Down

0 comments on commit edfc3b9

Please sign in to comment.