From 9ab01663b9c57bc5596387748892f3f77cf5fce0 Mon Sep 17 00:00:00 2001 From: jiarongping Date: Thu, 10 Mar 2022 17:27:36 +0800 Subject: [PATCH] =?UTF-8?q?add:=20=E5=A2=9E=E5=8A=A0=E8=BF=90=E8=A1=8C?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E6=97=A5=E5=BF=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../opendb-stat-run-errors/collection.json | 1 + .../opendb-stat-run-errors/package.json | 1 + database/opendb-stat/db_init.json | 3 +- opendb-stat.md | 41 +++++++++++++++++-- 4 files changed, 41 insertions(+), 5 deletions(-) create mode 100644 collection/opendb-stat-run-errors/collection.json create mode 100644 collection/opendb-stat-run-errors/package.json diff --git a/collection/opendb-stat-run-errors/collection.json b/collection/opendb-stat-run-errors/collection.json new file mode 100644 index 0000000..4f404a3 --- /dev/null +++ b/collection/opendb-stat-run-errors/collection.json @@ -0,0 +1 @@ +{"schema":{"bsonType":"object","required":[],"permission":{"read":false,"create":false,"update":false,"delete":false},"properties":{"_id":{"description":"ID,系统自动生成"},"mod":{"bsonType":"string","description":"运行模块"},"params":{"bsonType":"object","description":"运行参数"},"error":{"bsonType":"string","description":"错误信息"},"create_time":{"bsonType":"timestamp","description":"创建时间"}}}} \ No newline at end of file diff --git a/collection/opendb-stat-run-errors/package.json b/collection/opendb-stat-run-errors/package.json new file mode 100644 index 0000000..2e5999e --- /dev/null +++ b/collection/opendb-stat-run-errors/package.json @@ -0,0 +1 @@ +{"name":"@opendb/opendb-stat-run-errors","version":"0.0.1","description":"opendb-stat-run-errors","keywords":["运行错误日志表"],"opendb":{"title":"运行错误日志表","type":"collection","contributors":[{"name":"DCloud","email":"","homepage":"https://gitee.com/dcloud/opendb"}]}} \ No newline at end of file diff --git a/database/opendb-stat/db_init.json b/database/opendb-stat/db_init.json index 865a709..d40864a 100644 --- a/database/opendb-stat/db_init.json +++ b/database/opendb-stat/db_init.json @@ -15,5 +15,6 @@ "opendb-stat-event-result": {}, "opendb-stat-error-result": {}, "opendb-stat-loyalty-result": {}, - "opendb-stat-active-users": {} + "opendb-stat-active-users": {}, + "opendb-stat-run-errors": {} } diff --git a/opendb-stat.md b/opendb-stat.md index fbeb4fd..2e261d4 100644 --- a/opendb-stat.md +++ b/opendb-stat.md @@ -32,7 +32,7 @@ | last_modify_time | timestamp |- |最后修改时间 | - ## uni统计-应用版本表 opendb-stat-app-versions @@ -243,6 +242,7 @@ | duration | int | - | 本时间段内,所有用户访问总时长,单位秒 | | avg_session_time | int | - | 次均停留时长,单位秒 | | avg_used_time | int | - | 人均停留时长,单位秒 | +| bounce_times | int | - | 跳出次数 | | bounce_rate | double | - | 跳出率 | | retention | object | - | 用户留存信息 | | dimension | string | - | 统计范围 day:按天统计,hour:按小时统计, week:按周统计,month:按月统计 | @@ -420,6 +420,7 @@ | channel_id | string | - | 渠道/场景值ID,对应opendb-app-channels._id | | version_id | string | - | 应用版本ID,对应opendb-stat-app-versions._id | | hash | string | - | 错误hash码 | +| msg | string | - | 错误信息 | | count | int | - | 报错次数 | | last_time | timestamp | - | 最近一次报错时间 | | dimension | string | - | 统计范围 day:按天统计,hour:按小时统计, week:按周统计,month:按月统计 | @@ -526,4 +527,36 @@ s_100:300 } } -``` \ No newline at end of file +``` + +## uni统计- 周活跃用户表 opendb-stat-active-users + +由每日跑批合并,仅添加当日新用户,以及本周或本月首次访问的老用户,该数据供周统计/月统计使用。 + +### 字段说明 + +| 字段名 | 类型 | 默认值 | 说明 | +| :--------: | :-----: |:---------:| :-------------------: | +| _id | string | - | ID,系统自动生成 | +| appid | string | - | 统计应用ID,对应opendb-app-list.appid | +| platform_id | string | - | 应用平台ID,对应opendb-stat-app-platforms._id | +| channel_id | string | - | 渠道/场景值ID,对应opendb-stat-app-channels._id| +| version_id | string | - | 应用版本ID,对应opendb-stat-app-versions._id | +| uuid | string | - | 客户端上报的用户标志 | +| is_new | int | 0 | 是否为新用户,0否 1是 | +| dimension | string | week | 时间范围 week:周,month:月 | +| create_time | timestamp | - | 创建时间 | + + + +## uni统计- 运行错误记录表 opendb-stat-run-errors + +### 字段说明 + +| 字段名 | 类型 | 默认值 | 说明 | +| :--------: | :-----: |:---------:| :-------------------: | +| _id | string | - | ID,系统自动生成 | +| mod | string | - | 运行模块 | +| params | object | - | 运行参数 | +| error | string | - | 错误信息 | +| create_time | timestamp | - | 创建时间 |