reduce buckets for incoming ap
All checks were successful
Lint / pnpm_install (push) Successful in 2m16s
Publish Docker image / Build (push) Successful in 4m29s
Test (production install and build) / production (22.11.0) (push) Successful in 1m3s
Test (backend) / unit (22.11.0) (push) Successful in 8m38s
Publish Docker image / Build (pull_request) Successful in 4m25s
Lint / pnpm_install (pull_request) Successful in 1m36s
Test (backend) / e2e (22.11.0) (push) Successful in 11m20s
Test (production install and build) / production (22.11.0) (pull_request) Successful in 1m2s
Test (backend) / unit (22.11.0) (pull_request) Successful in 8m0s
Test (backend) / e2e (22.11.0) (pull_request) Successful in 11m39s
Lint / lint (backend) (push) Successful in 2m19s
Lint / lint (frontend) (push) Successful in 2m25s
Lint / lint (frontend-shared) (push) Successful in 2m35s
Lint / lint (frontend-embed) (push) Successful in 2m38s
Lint / lint (misskey-bubble-game) (push) Successful in 2m27s
Lint / lint (misskey-js) (push) Successful in 2m43s
Lint / lint (misskey-reversi) (push) Successful in 2m27s
Lint / typecheck (misskey-js) (push) Successful in 1m34s
Lint / lint (sw) (push) Successful in 2m37s
Lint / typecheck (backend) (push) Successful in 2m32s
Lint / typecheck (sw) (push) Successful in 1m48s
Lint / lint (backend) (pull_request) Successful in 3m7s
Lint / lint (frontend) (pull_request) Successful in 2m54s
Lint / lint (frontend-embed) (pull_request) Successful in 2m40s
Lint / lint (frontend-shared) (pull_request) Successful in 2m32s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m43s
Lint / lint (misskey-js) (pull_request) Successful in 2m25s
Lint / lint (sw) (pull_request) Successful in 2m49s
Lint / lint (misskey-reversi) (pull_request) Successful in 3m2s
Lint / typecheck (backend) (pull_request) Successful in 2m17s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m39s
Lint / typecheck (sw) (pull_request) Successful in 1m52s

Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
ゆめ 2024-11-17 21:53:54 -06:00
parent 935efb5bf2
commit f9167b8b86
No known key found for this signature in database

View file

@ -43,7 +43,7 @@ const mIncomingApProcessingTime = metricHistogram({
name: 'misskey_incoming_ap_processing_time', name: 'misskey_incoming_ap_processing_time',
help: 'Incoming AP processing time in seconds', help: 'Incoming AP processing time in seconds',
labelNames: ['incoming_host', 'incoming_type', 'success'], labelNames: ['incoming_host', 'incoming_type', 'success'],
buckets: [0.01, 0.1, 0.5, 1, 5, 10, 30, 60, 300, 1800], buckets: [1, 10, 60, 300, 1800],
}); });
const mIncomingApEvent = metricCounter({ const mIncomingApEvent = metricCounter({