Skip to content

Commit

Permalink
Rename telemetry keys for the log rate tab
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Nov 28, 2019
1 parent 1d16d06 commit adb3ea2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export const LogEntryRateResultsContent = ({
sourceId: string;
isFirstUse: boolean;
}) => {
useTrackPageview({ app: 'infra_logs', path: 'analysis_results' });
useTrackPageview({ app: 'infra_logs', path: 'analysis_results', delay: 15000 });
useTrackPageview({ app: 'infra_logs', path: 'log_entry_rate_results' });
useTrackPageview({ app: 'infra_logs', path: 'log_entry_rate_results', delay: 15000 });

const [dateFormat] = useKibanaUiSetting('dateFormat', 'MMMM D, YYYY h:mm A');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export const LogEntryRateSetupContent = <JobType extends string>({
moduleDescriptor,
sourceConfiguration,
}: LogEntryRateSetupContentProps<JobType>) => {
useTrackPageview({ app: 'infra_logs', path: 'analysis_setup' });
useTrackPageview({ app: 'infra_logs', path: 'analysis_setup', delay: 15000 });
useTrackPageview({ app: 'infra_logs', path: 'log_entry_rate_setup' });
useTrackPageview({ app: 'infra_logs', path: 'log_entry_rate_setup', delay: 15000 });

return (
<LogEntryRateSetupPage>
Expand Down

0 comments on commit adb3ea2

Please sign in to comment.