Skip to content

Commit 2273270

Browse files
committed
RUM-8098: updating schema
1 parent 622f81c commit 2273270

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

features/dd-sdk-android-rum/src/main/json/telemetry/configuration-schema.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,14 @@
414414
"type": "boolean",
415415
"description": "Whether the SDK is initialised on the application's main or a secondary process"
416416
},
417+
"inv_time_threshold_ms": {
418+
"type": "integer",
419+
"description": "Interval in milliseconds when the last action is considered as the action that created the next view. Only sent if a time based strategy has been used"
420+
},
421+
"tns_time_threshold_ms": {
422+
"type": "integer",
423+
"description": "The interval in milliseconds during which all network requests will be considered as initial, i.e. caused by the creation of this view. Only sent if a time based strategy has been used"
424+
},
417425
"track_feature_flags_for_events": {
418426
"type": "array",
419427
"items": {

features/dd-sdk-android-rum/src/main/json/telemetry/usage/common-features-schema.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,50 @@
4343
}
4444
}
4545
},
46+
{
47+
"required": ["feature"],
48+
"title": "SetViewContext",
49+
"properties": {
50+
"feature": {
51+
"type": "string",
52+
"description": "setViewContext API",
53+
"const": "set-view-context"
54+
}
55+
}
56+
},
57+
{
58+
"required": ["feature"],
59+
"title": "SetViewContextProperty",
60+
"properties": {
61+
"feature": {
62+
"type": "string",
63+
"description": "setViewContextProperty API",
64+
"const": "set-view-context-property"
65+
}
66+
}
67+
},
68+
{
69+
"required": ["feature"],
70+
"title": "SetViewName",
71+
"properties": {
72+
"feature": {
73+
"type": "string",
74+
"description": "setViewName API",
75+
"const": "set-view-name"
76+
}
77+
}
78+
},
79+
{
80+
"required": ["feature"],
81+
"title": "GetViewContext",
82+
"properties": {
83+
"feature": {
84+
"type": "string",
85+
"description": "getViewContext API",
86+
"const": "get-view-context"
87+
}
88+
}
89+
},
4690
{
4791
"required": ["feature"],
4892
"title": "AddAction",

0 commit comments

Comments
 (0)