• 速率限制
  • 返回

    速率限制

    速率限制配置参考。

    1. {
    2. "name": "ratelimit",
    3. "config": {
    4. "stat_prefix": "...",
    5. "domain": "...",
    6. "descriptors": [],
    7. "timeout_ms": "..."
    8. }
    9. }
    • stat_prefix

      (required, string) 发布统计信息时使用的前缀。

    • domain

      (required, string) 用于速率限制服务请求中的限制
      域。

    • descriptors

      (required, array) 用于速率限制服务请求中的速率限制描述符列表。描述符按照以下示例进行指定:

      1. [
      2. [
      3. {
      4. "key": "hello",
      5. "value": "world"
      6. },
      7. {
      8. "key": "foo",
      9. "value": "bar"
      10. }
      11. ],
      12. [
      13. {
      14. "key": "foo2",
      15. "value": "bar2"
      16. }
      17. ]
      18. ]
    • timeout_ms

      (optional, integer) 速率限制服务RPC的超时时间(以毫秒为单位)。如果未设置,则默认为20ms。

    返回

    • 上一级
    • 首页目录