You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require.True(t, strings.HasPrefix(setting.Value, "v1.0.0"), "GOFIPS140 must reference the certified module version, got %q", setting.Value)
915
-
continue
916
-
case"DefaultGODEBUG":
917
-
ifstrings.Contains(setting.Value, "fips140=on") {
918
-
foundFIPSDefault=true
919
-
}
920
-
continue
921
-
}
922
-
}
923
-
924
-
require.True(t, foundTags, "Did not find -tags within binary version information")
925
-
require.True(t, foundFIPS, "Did not find GOFIPS140 within binary version information")
926
-
require.True(t, foundFIPSDefault, "Did not find fips140=on in DefaultGODEBUG — binary will not enforce FIPS mode at runtime (check GOFIPS140 env at build time)")
904
+
testutils.RequireFIPSBuildInfo(t, info.Settings)
927
905
}
928
906
929
907
// inspector is a file contents inspector. It vets the contents of the file
Copy file name to clipboardExpand all lines: docs/reference/filebeat/filebeat-input-kafka.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,31 +98,31 @@ How long to wait before retrying a failed read. Default is 2s.
98
98
99
99
### `timeout` [_timeout_2]
100
100
```{applies_to}
101
-
stack: ga 9.5
101
+
stack: ga 9.3+
102
102
```
103
103
104
104
The network timeout for the connection to the Kafka brokers, applied to the dial, read, and write deadlines. Increase this for consumers reading across higher-latency links (for example cross-region or WAN), where a large fetch response may not be fully read within the default deadline. Default is 30s.
105
105
106
106
107
107
### `keep_alive` [_keep_alive]
108
108
```{applies_to}
109
-
stack: ga 9.5
109
+
stack: ga 9.3+
110
110
```
111
111
112
112
The keep-alive period for the active network connection to the Kafka brokers. Default is 0s (disabled).
113
113
114
114
115
115
### `session_timeout` [_session_timeout]
116
116
```{applies_to}
117
-
stack: ga 9.5
117
+
stack: ga 9.3+
118
118
```
119
119
120
120
The consumer group session timeout. If the broker receives no heartbeat from a consumer within this period, the consumer is removed from the group and a rebalance is triggered. Consumers on higher-latency links may need a larger value to avoid spurious rebalances. Default is 10s.
121
121
122
122
123
123
### `heartbeat_interval` [_heartbeat_interval]
124
124
```{applies_to}
125
-
stack: ga 9.5
125
+
stack: ga 9.3+
126
126
```
127
127
128
128
How often the consumer sends heartbeats to the broker. This must be lower than `session_timeout`, and is typically set to no more than a third of that value. Default is 3s.
0 commit comments