mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-14 17:04:53 +00:00
a00f350cd1
* feat: Added simple, configurable rate limit for lightpush and store-query Adjust lightpush rest response to rate limit, added tests ann some fixes Add rest store query test for rate limit checks and proper error response Update apps/wakunode2/external_config.nim Move chronos/tokenbucket to nwaku codebasee with limited and fixed feature set Add meterics counter to lightpush rate limits Co-authored-by: gabrielmer <101006718+gabrielmer@users.noreply.github.com>
22 lines
694 B
Nim
22 lines
694 B
Nim
when (NimMajor, NimMinor) < (1, 4):
|
|
{.push raises: [Defect].}
|
|
else:
|
|
{.push raises: [].}
|
|
|
|
import metrics
|
|
|
|
declarePublicGauge waku_lightpush_errors,
|
|
"number of lightpush protocol errors", ["type"]
|
|
declarePublicGauge waku_lightpush_messages,
|
|
"number of lightpush messages received", ["type"]
|
|
|
|
# Error types (metric label values)
|
|
const
|
|
dialFailure* = "dial_failure"
|
|
decodeRpcFailure* = "decode_rpc_failure"
|
|
peerNotFoundFailure* = "peer_not_found_failure"
|
|
emptyRequestBodyFailure* = "empty_request_body_failure"
|
|
emptyResponseBodyFailure* = "empty_response_body_failure"
|
|
messagePushFailure* = "message_push_failure"
|
|
requestLimitReachedFailure* = "request_limit_reached_failure"
|