Skip to content

Commit

Permalink
Merge branch 'main' into feature-fix-stats-leak
Browse files Browse the repository at this point in the history
  • Loading branch information
taloric authored Dec 17, 2024
2 parents 490043d + 30e5c31 commit 5f3f0ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion server/agent_config/README-CH.md
Original file line number Diff line number Diff line change
Expand Up @@ -7194,7 +7194,8 @@ processors:

FlowMap 中存储的最大并发 Flow 数量。该配置同时影响 RRT 缓存容量。
例如:`rrt-cache-capacity` = `flow-count-limit`。当 `rrt-cache-capacity` 不足时,
将无法计算 L7 的 RRT。
将无法计算 L7 的 RRT。当 capture_mode 为 2 并且 concurrent_flow_limit 小于等于 65535 时,
将会被强制设置为 u32::MAX。

#### 内存池大小 {#processors.flow_log.tunning.memory_pool_size}

Expand Down
3 changes: 2 additions & 1 deletion server/agent_config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7402,7 +7402,8 @@ processors:

Maximum number of flows that can be stored in FlowMap, It will also affect the capacity of
the RRT cache, Example: `rrt-cache-capacity` = `flow-count-limit`. When `rrt-cache-capacity`
is not enough, it will be unable to calculate the rrt of l7.
is not enough, it will be unable to calculate the rrt of l7. When capture_mode is 2 and
concurrent_flow_limit is less than or equal to 65535, it will be forced to u32::MAX.

#### Memory Pool Size {#processors.flow_log.tunning.memory_pool_size}

Expand Down
6 changes: 4 additions & 2 deletions server/agent_config/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4929,11 +4929,13 @@ processors:
# en: |-
# Maximum number of flows that can be stored in FlowMap, It will also affect the capacity of
# the RRT cache, Example: `rrt-cache-capacity` = `flow-count-limit`. When `rrt-cache-capacity`
# is not enough, it will be unable to calculate the rrt of l7.
# is not enough, it will be unable to calculate the rrt of l7. When capture_mode is 2 and
# concurrent_flow_limit is less than or equal to 65535, it will be forced to u32::MAX.
# ch: |-
# FlowMap 中存储的最大并发 Flow 数量。该配置同时影响 RRT 缓存容量。
# 例如:`rrt-cache-capacity` = `flow-count-limit`。当 `rrt-cache-capacity` 不足时,
# 将无法计算 L7 的 RRT。
# 将无法计算 L7 的 RRT。当 capture_mode 为 2 并且 concurrent_flow_limit 小于等于 65535 时,
# 将会被强制设置为 u32::MAX。
# upgrade_from: static_config.flow.flow-count-limit
concurrent_flow_limit: 65535
# type: int
Expand Down

0 comments on commit 5f3f0ce

Please sign in to comment.