DE-4747 instrumentation

This commit is contained in:
Nitin
2022-03-31 16:24:32 +05:30
parent cb62efbc02
commit 2cb99735f9
11 changed files with 435 additions and 56 deletions

View File

@@ -4,54 +4,100 @@
"app": {
"type": "object",
"properties": {
"name": {"type": "string"},
"version": {"type": "string"}
"name": {
"type": "string"
},
"version": {
"type": "string"
}
}
},
"device": {
"type": "object",
"properties": {
"device_id": {"type": "string"},
"advertising_id": {"type": "string"},
"installation_id": {"type": "string"},
"category": {"type": "string"},
"height": {"type": "string"},
"imei": {"type": "string"},
"manufacturer": {"type": "string"},
"model": {"type": "string"},
"screen_resolution": {"type": "string"},
"os": {"type": "string"},
"os_version": {"type": "string"},
"os_api_level": {"type": "string"},
"rooted": {"type": "string"},
"fingerprint": {"type": "string"}
"device_id": {
"type": "string"
},
"advertising_id": {
"type": "string"
},
"installation_id": {
"type": "string"
},
"category": {
"type": "string"
},
"height": {
"type": "string"
},
"imei": {
"type": "string"
},
"manufacturer": {
"type": "string"
},
"model": {
"type": "string"
},
"screen_resolution": {
"type": "string"
},
"os": {
"type": "string"
},
"os_version": {
"type": "string"
},
"os_api_level": {
"type": "string"
},
"rooted": {
"type": "string"
},
"fingerprint": {
"type": "string"
}
}
},
"network": {
"type": "object",
"properties": {
"carrier": {"type": "string"},
"type": {"type": "string"},
"ip": {"type": "string"}
"carrier": {
"type": "string"
},
"type": {
"type": "string"
},
"ip": {
"type": "string"
}
}
},
"location": {
"type": "object",
"properties": {
"latitude": {"type": "string"},
"longitude": {"type": "string"}
"latitude": {
"type": "string"
},
"longitude": {
"type": "string"
}
}
},
"referer": {
"type": "object",
"properties": {
"url": {"type": "string"}
"url": {
"type": "string"
}
}
},
"user": {
"type": "object",
"properties": {
"customer_id": {"type": "string"}
"customer_id": {
"type": "string"
}
}
},
"events": {
@@ -59,8 +105,11 @@
"items": {
"type": "object",
"properties": {
"event_type": {"type": "string"},
"timestamp": {"type": "number"}
"event_type": {
"type": "string"
},
"timestamp": {
"type": "number"
}
}
}