-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #730 from skyclouds2001/dev
Dev
- Loading branch information
Showing
3 changed files
with
50 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,48 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'daily' | ||
interval: 'weekly' | ||
day: 'monday' | ||
time: '12:00' | ||
timezone: 'Asia/Shanghai' | ||
allow: | ||
- dependency-type: 'all' | ||
ignore: | ||
- dependency-name: 'pnpm' | ||
- dependency-type: 'direct' | ||
labels: | ||
- 'dependencies' | ||
open-pull-requests-limit: 50 | ||
assignees: | ||
- 'skyclouds2001' | ||
reviewers: | ||
- 'skyclouds2001' | ||
open-pull-requests-limit: 5 | ||
pull-request-branch-name: | ||
separator: '-' | ||
target-branch: 'dev' | ||
- package-ecosystem: 'github-actions' | ||
groups: | ||
all: | ||
patterns: | ||
- '*' | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
day: 'monday' | ||
time: '12:00' | ||
timezone: 'Asia/Shanghai' | ||
allow: | ||
- dependency-type: 'all' | ||
- dependency-type: 'direct' | ||
labels: | ||
- 'dependencies' | ||
open-pull-requests-limit: 10 | ||
assignees: | ||
- 'skyclouds2001' | ||
reviewers: | ||
- 'skyclouds2001' | ||
open-pull-requests-limit: 5 | ||
pull-request-branch-name: | ||
separator: '-' | ||
target-branch: 'dev' | ||
groups: | ||
all: | ||
patterns: | ||
- '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
前端监控系统需求: | ||
|
||
自动收集、上报、存储页面关键数据,并提供监控数据可视化查询界面,要求覆盖 Web 页面关键运行数据,包括: | ||
异常监控,包括:JS 异常、接口异常、白屏异常、资源异常等 | ||
关键性能数据监控,如: FP、FCP、DOM Ready、DNS 等 | ||
用户行为数据,如: PV、UV、页面停留时间等 | ||
HTTP 请求监控,包括: 请求链路、成功率、返回信息等 | ||
|
||
要求至少提供如下视图: | ||
PV/UV 趋势图 | ||
各性能数据走势图 | ||
异常数据 & 归因分析展示 | ||
|
||
https://help.aliyun.com/zh/arms/browser-monitoring/product-overview/what-is-arms-browser-monitoring | ||
https://sentry.io/welcome/ | ||
|
||
https://cdc.tencent.com/2018/09/13/frontend-exception-monitor-research/ | ||
https://juejin.cn/post/7276769559586439183 | ||
https://juejin.cn/post/6958690901380038687 |