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
Add support for the rate_limit_early_limit parameter to enable starting
rate-limiting before reaching the API response limit. Values less than
1 are treated as a percentage of the limit, while values greater than or
equal to 1 are treated as the target remaining value.
This can avoid causing alerts to Okta admins under bursts of system log
activity by having the integration stop making requests as it gets close
to the limit.
- description: Optimize API pagination to prevent unnecessary requests when fewer logs than the limit are returned, reducing rate limit token consumption.
Copy file name to clipboardExpand all lines: packages/okta/data_stream/system/manifest.yml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,13 @@ streams:
54
54
# This works around system tests not allowing an assert.hit_count > 500.
55
55
- default
56
56
- agentless
57
+
- name: rate_limit_early_limit
58
+
title: Rate Limit Early Limit
59
+
description: Start rate-limiting before reaching the limit specified in the response. Values less than 1 are treated as a percentage of the limit (e.g. 0.9 means 90%). Values greater than or equal to 1 are treated as the target remaining value.
Copy file name to clipboardExpand all lines: packages/okta/manifest.yml
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: okta
2
2
title: Okta
3
-
version: "3.10.3"
3
+
version: "3.11.0"
4
4
description: Collect and parse event logs from Okta API with Elastic Agent.
5
5
type: integration
6
6
format_version: "3.2.3"
@@ -149,11 +149,7 @@ policy_templates:
149
149
required: false
150
150
show_user: false
151
151
description: >-
152
-
The request tracer logs requests and responses to the agent's local file-system for debugging configurations.
153
-
Enabling this request tracing compromises security and should only be used for debugging. Disabling the request
154
-
tracer will delete any stored traces.
155
-
See [documentation](https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-input-httpjson.html#_request_tracer_filename)
156
-
for details.
152
+
The request tracer logs requests and responses to the agent's local file-system for debugging configurations. Enabling this request tracing compromises security and should only be used for debugging. Disabling the request tracer will delete any stored traces. See [documentation](https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-input-httpjson.html#_request_tracer_filename) for details.
0 commit comments