|
75 | 75 | label: "SDK control",
|
76 | 76 | list: ["tracking", "networking"]
|
77 | 77 | },
|
78 |
| - /*features: { |
| 78 | + features: { |
79 | 79 | label: "SDK features",
|
80 |
| - list: ["crashes", "views"] |
| 80 | + list: ["crt", "vt", "st", "cet", "ecz", "cr", "log"] |
81 | 81 | },
|
82 | 82 | settings: {
|
83 | 83 | label: "SDK settings",
|
84 |
| - list: ["heartbeat", "event_queue","request_queue"] |
85 |
| - }*/ |
| 84 | + list: ["sui", "eqs", "rqs", "ebs", "czi", "dort"] |
| 85 | + }, |
| 86 | + limits: { |
| 87 | + label: "SDK Limits", |
| 88 | + list: ["lkl", "lvs", "lsv", "lbc"] |
| 89 | + }, |
86 | 90 | },
|
87 | 91 | configs: {
|
88 | 92 | tracking: {
|
|
99 | 103 | default: true,
|
100 | 104 | value: null
|
101 | 105 | },
|
102 |
| - /*crashes: { |
| 106 | + crt: { |
103 | 107 | type: "switch",
|
104 | 108 | name: "Crashes",
|
105 | 109 | description: "Enable or disable automatic tracking of unhandled crashes",
|
106 | 110 | default: true,
|
107 | 111 | value: null
|
108 | 112 | },
|
109 |
| - views: { |
| 113 | + vt: { |
110 | 114 | type: "switch",
|
111 | 115 | name: "Views",
|
112 | 116 | description: "Enable or disable automatic tracking of views",
|
113 | 117 | default: true,
|
114 | 118 | value: null
|
115 | 119 | },
|
116 |
| - heartbeat: { |
| 120 | + st: { |
| 121 | + type: "switch", |
| 122 | + name: "Session Tracking", |
| 123 | + description: "Enable or disable automatic session tracking", |
| 124 | + default: true, |
| 125 | + value: null |
| 126 | + }, |
| 127 | + sui: { |
117 | 128 | type: "number",
|
118 |
| - name: "Heartbeat", |
| 129 | + name: "Session Update Interval", |
119 | 130 | description: "How often to send heartbeat to server in seconds",
|
120 | 131 | default: 60,
|
121 | 132 | value: null
|
122 | 133 | },
|
123 |
| - request_queue: { |
| 134 | + cet: { |
| 135 | + type: "switch", |
| 136 | + name: "Custom Event Tracking", |
| 137 | + description: "Track custom events", |
| 138 | + default: true, |
| 139 | + value: null |
| 140 | + }, |
| 141 | + ecz: { |
| 142 | + type: "switch", |
| 143 | + name: "Content Zone", |
| 144 | + description: "Display content from Countly", |
| 145 | + default: true, |
| 146 | + value: null |
| 147 | + }, |
| 148 | + cr: { |
| 149 | + type: "switch", |
| 150 | + name: "Consent Requests", |
| 151 | + description: "Ask for consents", |
| 152 | + default: true, |
| 153 | + value: null |
| 154 | + }, |
| 155 | + rqs: { |
124 | 156 | type: "number",
|
125 | 157 | name: "Request Queue Size",
|
126 | 158 | description: "How many requests to store in queue, if SDK cannot connect to server",
|
127 | 159 | default: 1000,
|
128 | 160 | value: null
|
129 | 161 | },
|
130 |
| - event_queue: { |
| 162 | + eqs: { |
131 | 163 | type: "number",
|
132 | 164 | name: "Event Queue Size",
|
133 | 165 | description: "How many events to store in queue before they would be batched and sent to server",
|
134 | 166 | default: 10,
|
135 | 167 | value: null
|
136 |
| - }*/ |
| 168 | + }, |
| 169 | + ebs: { |
| 170 | + type: "number", |
| 171 | + name: "Event Batch Size", |
| 172 | + description: "How many events to store in queue before they would be batched and sent to server", |
| 173 | + default: 10, |
| 174 | + value: null |
| 175 | + }, |
| 176 | + czi: { |
| 177 | + type: "number", |
| 178 | + name: "Content Zone Interval", |
| 179 | + description: "How often to check for new content", |
| 180 | + default: 30, |
| 181 | + value: null |
| 182 | + }, |
| 183 | + dort: { |
| 184 | + type: "number", |
| 185 | + name: "Drop old requests", |
| 186 | + description: "Provide time in seconds after which requests should be dropped if they are not sent to server", |
| 187 | + default: 0, |
| 188 | + value: null |
| 189 | + }, |
| 190 | + lkl: { |
| 191 | + type: "number", |
| 192 | + name: "Limit Key Length", |
| 193 | + description: "Maximum length of event key", |
| 194 | + default: 256, |
| 195 | + value: null |
| 196 | + }, |
| 197 | + lvs: { |
| 198 | + type: "number", |
| 199 | + name: "Limit Value Size", |
| 200 | + description: "Maximum value size of event segment", |
| 201 | + default: 256, |
| 202 | + value: null |
| 203 | + }, |
| 204 | + lsv: { |
| 205 | + type: "number", |
| 206 | + name: "Limit Number of Segments", |
| 207 | + description: "Maximum segments of event", |
| 208 | + default: 100, |
| 209 | + value: null |
| 210 | + }, |
| 211 | + lbc: { |
| 212 | + type: "number", |
| 213 | + name: "Limit Breadcrump", |
| 214 | + description: "Maximum breadcrump size", |
| 215 | + default: 100, |
| 216 | + value: null |
| 217 | + }, |
| 218 | + log: { |
| 219 | + type: "switch", |
| 220 | + name: "Logging", |
| 221 | + description: "Enable SDK logging", |
| 222 | + default: true, |
| 223 | + value: null |
| 224 | + } |
137 | 225 | },
|
138 | 226 | diff: [],
|
139 | 227 | description: "This is experimental feature and not all SDKs and SDK versions yet support it. Refer to the SDK documentation for more information"
|
|
0 commit comments