Skip to content
Failed

Changes

Summary

  1. feat(script): add s3 object monitor clean script (#3215) (commit: 8b92f92) (details)
Commit 8b92f925546de9768ae4ac54761da05a738a5bd3 by noreply
feat(script): add s3 object monitor clean script (#3215)

Add s3 object monitor clean script, The default S3 upload limit is 5GB,
and some code caches may exceed this limit, causing the upload to fail.
* just monitor
```
deno run --allow-net --allow-env monitor-s3-object-size.ts \
  --path="path" \
  --threshold-mb=500 \
  --feishu-webhook="xxxx"
```
* monitor and clean
```shell
deno run --allow-net --allow-env monitor-s3-object-size.ts \
  --path="path" \
  --threshold-mb=500 \
  --feishu-webhook="xxxx" \
  --cleanup
```
(commit: 8b92f92)
The file was addedscripts/plugins/monitor-s3-object-size.ts