mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-13 06:23:01 +08:00
185 lines
5.3 KiB
JSON
185 lines
5.3 KiB
JSON
{
|
||
"schema":{
|
||
"bsonType":"object",
|
||
"description":"记录上报的应用运行错误日志",
|
||
"required":[
|
||
],
|
||
"permission":{
|
||
"read":false,
|
||
"create":false,
|
||
"update":false,
|
||
"delete":false
|
||
},
|
||
"properties":{
|
||
"_id":{
|
||
"description":"ID,系统自动生成"
|
||
},
|
||
"appid":{
|
||
"bsonType":"string",
|
||
"description":"用户端上报的应用ID"
|
||
},
|
||
"version":{
|
||
"bsonType":"string",
|
||
"description":"用户端上报的应用版本号"
|
||
},
|
||
"platform":{
|
||
"bsonType":"string",
|
||
"description":"用户端上报的平台code"
|
||
},
|
||
"channel":{
|
||
"bsonType":"string",
|
||
"description":"用户端上报的渠道code/场景值"
|
||
},
|
||
"error_type":{
|
||
"bsonType":"int",
|
||
"description":"错误类型",
|
||
"defaultValue":0,
|
||
"enum":[
|
||
{
|
||
"text":"未知",
|
||
"value":0
|
||
},
|
||
{
|
||
"text":"表示webview页面js异常(uni-app项目对应vue页面)",
|
||
"value":2
|
||
},
|
||
{
|
||
"text":"表示uni框架js异常(仅uni-app项目)",
|
||
"value":4
|
||
},
|
||
{
|
||
"text":"表示控制页js异常(仅uni-app项目)",
|
||
"value":5
|
||
},
|
||
{
|
||
"text":"表示nvue页面js异常(仅uni-app项目)",
|
||
"value":6
|
||
}
|
||
]
|
||
},
|
||
"device_id":{
|
||
"bsonType":"string",
|
||
"description":"客户端携带的设备标识"
|
||
},
|
||
"uid":{
|
||
"bsonType":"string",
|
||
"description":"用户编号, 对应uni-id-users._id"
|
||
},
|
||
"os":{
|
||
"bsonType":"string",
|
||
"description":"客户端操作系统"
|
||
},
|
||
"ua":{
|
||
"bsonType":"string",
|
||
"description":"客户端user-agent信息"
|
||
},
|
||
"space_id":{
|
||
"bsonType":"string",
|
||
"description":"服务空间编号"
|
||
},
|
||
"space_provider":{
|
||
"bsonType":"string",
|
||
"description":"服务空间提供商"
|
||
},
|
||
"sdk_version":{
|
||
"bsonType":"string",
|
||
"description":"小程序基础库版本号"
|
||
},
|
||
"platform_version":{
|
||
"bsonType":"string",
|
||
"description":"微信、支付宝宿主App的版本号"
|
||
},
|
||
"error_msg":{
|
||
"bsonType":"string",
|
||
"description":"错误信息"
|
||
},
|
||
"error_hash":{
|
||
"bsonType":"string",
|
||
"description":"错误hash码"
|
||
},
|
||
"page_url":{
|
||
"bsonType":"string",
|
||
"description":"页面url"
|
||
},
|
||
"create_time":{
|
||
"bsonType":"timestamp",
|
||
"description":"创建时间"
|
||
}
|
||
}
|
||
},
|
||
"index":[
|
||
{
|
||
"IndexName":"create_time",
|
||
"MgoKeySchema":{
|
||
"MgoIndexKeys":[
|
||
{
|
||
"Name":"create_time",
|
||
"Direction":"1"
|
||
}
|
||
],
|
||
"MgoIsUnique":false
|
||
}
|
||
},
|
||
{
|
||
"IndexName":"appid",
|
||
"MgoKeySchema":{
|
||
"MgoIndexKeys":[
|
||
{
|
||
"Name":"appid",
|
||
"Direction":"1"
|
||
}
|
||
],
|
||
"MgoIsUnique":false
|
||
}
|
||
},
|
||
{
|
||
"IndexName":"version",
|
||
"MgoKeySchema":{
|
||
"MgoIndexKeys":[
|
||
{
|
||
"Name":"version",
|
||
"Direction":"1"
|
||
}
|
||
],
|
||
"MgoIsUnique":false
|
||
}
|
||
},
|
||
{
|
||
"IndexName":"platform",
|
||
"MgoKeySchema":{
|
||
"MgoIndexKeys":[
|
||
{
|
||
"Name":"platform",
|
||
"Direction":"1"
|
||
}
|
||
],
|
||
"MgoIsUnique":false
|
||
}
|
||
},
|
||
{
|
||
"IndexName":"channel",
|
||
"MgoKeySchema":{
|
||
"MgoIndexKeys":[
|
||
{
|
||
"Name":"channel",
|
||
"Direction":"1"
|
||
}
|
||
],
|
||
"MgoIsUnique":false
|
||
}
|
||
},
|
||
{
|
||
"IndexName":"error_hash",
|
||
"MgoKeySchema":{
|
||
"MgoIndexKeys":[
|
||
{
|
||
"Name":"error_hash",
|
||
"Direction":"1"
|
||
}
|
||
],
|
||
"MgoIsUnique":false
|
||
}
|
||
}
|
||
]
|
||
}
|