Skip to content

Commit 3ddc3fd

Browse files
authored
Merge pull request #5982 from Countly/ar2rsawseen/next
[sdks] Add new SDK configs
2 parents 7029c6a + 797a556 commit 3ddc3fd

File tree

1 file changed

+99
-11
lines changed

1 file changed

+99
-11
lines changed

plugins/sdk/frontend/public/javascripts/countly.views.js

+99-11
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,18 @@
7575
label: "SDK control",
7676
list: ["tracking", "networking"]
7777
},
78-
/*features: {
78+
features: {
7979
label: "SDK features",
80-
list: ["crashes", "views"]
80+
list: ["crt", "vt", "st", "cet", "ecz", "cr", "log"]
8181
},
8282
settings: {
8383
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+
},
8690
},
8791
configs: {
8892
tracking: {
@@ -99,41 +103,125 @@
99103
default: true,
100104
value: null
101105
},
102-
/*crashes: {
106+
crt: {
103107
type: "switch",
104108
name: "Crashes",
105109
description: "Enable or disable automatic tracking of unhandled crashes",
106110
default: true,
107111
value: null
108112
},
109-
views: {
113+
vt: {
110114
type: "switch",
111115
name: "Views",
112116
description: "Enable or disable automatic tracking of views",
113117
default: true,
114118
value: null
115119
},
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: {
117128
type: "number",
118-
name: "Heartbeat",
129+
name: "Session Update Interval",
119130
description: "How often to send heartbeat to server in seconds",
120131
default: 60,
121132
value: null
122133
},
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: {
124156
type: "number",
125157
name: "Request Queue Size",
126158
description: "How many requests to store in queue, if SDK cannot connect to server",
127159
default: 1000,
128160
value: null
129161
},
130-
event_queue: {
162+
eqs: {
131163
type: "number",
132164
name: "Event Queue Size",
133165
description: "How many events to store in queue before they would be batched and sent to server",
134166
default: 10,
135167
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+
}
137225
},
138226
diff: [],
139227
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

Comments
 (0)