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
Copy file name to clipboardExpand all lines: docs/v1/EventsApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ Name | Type | Description | Notes
97
97
98
98
Query the event stream
99
99
100
-
The event stream can be queried and filtered by time, priority, sources and tags. **Note**: If the event you’re querying contains markdown formatting of any kind, you may see characters such as %,\\,n in your output.
100
+
The event stream can be queried and filtered by time, priority, sources and tags. **Notes**: - If the event you’re querying contains markdown formatting of any kind, you may see characters such as `%`,`\\`,`n` in your output. - This endpoint returns a maximum of `1000` most recent results. To return additional results, identify the last timestamp of the last result and set that as the `end` query time to paginate the results.
Copy file name to clipboardExpand all lines: src/datadog_api_client/v1/api/events_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@ def __list_events(
164
164
):
165
165
"""Query the event stream # noqa: E501
166
166
167
-
The event stream can be queried and filtered by time, priority, sources and tags. **Note**: If the event you’re querying contains markdown formatting of any kind, you may see characters such as %,\\,n in your output. # noqa: E501
167
+
The event stream can be queried and filtered by time, priority, sources and tags. **Notes**: - If the event you’re querying contains markdown formatting of any kind, you may see characters such as `%`,`\\`,`n` in your output. - This endpoint returns a maximum of `1000` most recent results. To return additional results, identify the last timestamp of the last result and set that as the `end` query time to paginate the results. # noqa: E501
168
168
This method makes a synchronous HTTP request by default. To make an
0 commit comments