Skip to content

Commit

Permalink
17520 FIX f5_bigip_conns: Fix computation of created connections
Browse files Browse the repository at this point in the history
Change-Id: I029ba458a7e97da1323adf9910829d32fb6a8187
  • Loading branch information
mo-ki committed Jan 20, 2025
1 parent d6da9f1 commit 4e5aa3d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .werks/17520.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[//]: # (werk v2)
# f5_bigip_conns: Fix computation of created connections

key | value
---------- | ---
date | 2025-01-17T13:59:00+00:00
version | 2.4.0b1
class | fix
edition | cre
component | checks
level | 1
compatible | yes


2 changes: 1 addition & 1 deletion cmk/base/legacy_checks/f5_bigip_conns.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def check_f5_bigip_conns(item, params, info): # pylint: disable=too-many-branch
else:
compat_conn_rate = 0

total_native_compat_rate += native_conn_rate + compat_conn_rate
total_native_compat_rate += native_conn_rate + compat_conn_rate

if line[4] != "":
stat_http_req_rate = get_rate(
Expand Down

0 comments on commit 4e5aa3d

Please sign in to comment.