You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The use of this library may collect, record and transmit data about the operation of the library and related data, as well as potentially personal data, including ip address from which the request is made, user agent from the device from which the request is made, version of the library used, version of the telemetry sending library, name of the invoked method, authorization type information (can be configured), base configuration request usage information, callback information, onResponse middleware usage information, onError middleware usage information, queries usage information, body usage information in request, headers usage information in request, strict GDPR flag enabling information, HTTP response code (can be configured), request start date and time and response receipt date and time (can be configured), No check atlassian token flag enabling information.
54
-
55
-
The type and amount of data may vary with the version of the libraries and can be changed at any time without notice.
56
-
57
-
Telemetry data collection is enabled by default.
58
-
59
-
The following tracking parameters can be configured:
60
-
61
-
- Authentication type
62
-
- Request status code
63
-
- Request timings
64
-
65
-
#### Customizing telemetry collection data example
66
-
67
-
```typescript
68
-
import { Config } from'jira.js';
69
-
70
-
const config:Config= {
71
-
host: 'https://your-domain.atlassian.net',
72
-
telemetry: {
73
-
allowedToPassAuthenticationType: false, // true by default
74
-
allowedToPassRequestStatusCode: true, // true by default
75
-
allowedToPassRequestTimings: false, // true by default
76
-
},
77
-
};
78
-
```
79
-
80
-
If you want to disable telemetry, set the `telemetry` field to `false`.
81
-
82
-
#### Disabling telemetry collection example
83
-
84
-
```typescript
85
-
import { Config } from'jira.js';
86
-
87
-
const config:Config= {
88
-
host: 'https://your-domain.atlassian.net',
89
-
telemetry: false, // Telemetry will not be collected
0 commit comments