Skip to content

Commit db173d7

Browse files
committed
fix(@angular/cli): collect tech information
Currently tech information such as OS and OS version was not being collected property due to missing required fields. (cherry picked from commit fb19f5f)
1 parent a8376e2 commit db173d7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/angular/cli/src/analytics/analytics-collector.ts

+9
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ export class AnalyticsCollector {
4646
[RequestParameter.UserAgentArchitecture]: os.arch(),
4747
[RequestParameter.UserAgentPlatform]: os.platform(),
4848
[RequestParameter.UserAgentPlatformVersion]: os.release(),
49+
[RequestParameter.UserAgentMobile]: 0,
4950
[RequestParameter.SessionEngaged]: 1,
51+
// The below is needed for tech details to be collected.
52+
[RequestParameter.UserAgentFullVersionList]:
53+
'Google%20Chrome;111.0.5563.64|Not(A%3ABrand;8.0.0.0|Chromium;111.0.5563.64',
5054
};
5155

5256
if (ngDebug) {
@@ -171,6 +175,11 @@ export class AnalyticsCollector {
171175
host: 'www.google-analytics.com',
172176
method: 'POST',
173177
path: '/g/collect?' + this.requestParameterStringified,
178+
headers: {
179+
// The below is needed for tech details to be collected even though we provide our own information from the OS Node.js module
180+
'user-agent':
181+
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',
182+
},
174183
},
175184
(response) => {
176185
if (response.statusCode !== 200 && response.statusCode !== 204) {

0 commit comments

Comments
 (0)