-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(dedicated): occ diagnostic tracking #15167
base: feat/occ-diagnostic
Are you sure you want to change the base?
Conversation
<oui-action-menu-item | ||
data-ng-click="$ctrl.gotoDiagnosticResult($row.id)" | ||
data-ng-click="$ctrl.trackAction('result', $row.function); $ctrl.gotoDiagnosticResult($row.id);" | ||
><span |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use below directives directly on action menu for tracking ?
data-track-on="click" data-track-type="action" data-track-name=""
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to specify the level2 so we cant use directives
@@ -38,15 +45,21 @@ export default class CheckBGPPeeringCtrl { | |||
false, | |||
); | |||
}) | |||
.catch((error) => | |||
.catch((error) => { | |||
console.log(error); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To remove console
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure lvl2 for network is the same for all regions ? (eu / us / ca ) ?
625ec52
to
4bf03e3
Compare
this.atInternet.trackClick({ | ||
name: `${DIAGNOSTIC_TRACKING_PREFIX}datagrid::button::${option}::${diagnosticFunction}`, | ||
type: 'action', | ||
level2: 99, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can add this level2 in constant as you did for DIAGNOSTIC_TRACKING_PREFIX
this.atInternet.trackClick({ | ||
name: `${DIAGNOSTIC_TRACKING_PREFIX}banner::link::go-to-diagnostic-results`, | ||
type: 'action', | ||
level2: 99, | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure page_theme, page_category and page details are tracked here ?
this.atInternet.trackPage({ | ||
name: `${DIAGNOSTIC_TRACKING_PREFIX}cloud-connect::pop-up::see::diagnostic-results-${this.diagnostic.function}`, | ||
type: 'navigation', | ||
level2: 99, | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even in trackPage I am not sure if we track page_theme, page_category.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I already pinged you the PR which I did for RBX1 EOL banner tracking changes.
4bf03e3
to
9578553
Compare
825a2b2
to
65c0f33
Compare
9578553
to
0f14411
Compare
0f14411
to
2485f89
Compare
65c0f33
to
21ef64f
Compare
21ef64f
to
be5985a
Compare
ref: MANAGER-16600 Signed-off-by: soufien mhelhali <[email protected]>
ref: MANAGER-16600 Signed-off-by: soufien mhelhali <[email protected]>
f4ea32d
to
75c0ee7
Compare
|
feat/occ-diagnostic
Description
Related