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/src/_static/generated/api-server-openapi.json
+21-21Lines changed: 21 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -44,11 +44,11 @@
44
44
"example": {
45
45
"query_string": "*",
46
46
"dataset": "default",
47
-
"begin_timestamp": 0,
48
-
"end_timestamp": 17356896,
47
+
"time_range_begin_millisecs": 0,
48
+
"time_range_end_millisecs": 17356896,
49
49
"ignore_case": true,
50
50
"max_num_results": 0,
51
-
"write_to_file": false
51
+
"buffer_results_in_mongodb": true
52
52
}
53
53
}
54
54
},
@@ -119,13 +119,9 @@
119
119
"query_string"
120
120
],
121
121
"properties": {
122
-
"begin_timestamp": {
123
-
"type": [
124
-
"integer",
125
-
"null"
126
-
],
127
-
"format": "int64",
128
-
"description": "The beginning timestamp (in epoch milliseconds) for the search range (inclusive)."
122
+
"buffer_results_in_mongodb": {
123
+
"type": "boolean",
124
+
"description": "Whether to buffer search results in `MongoDB`.\nBy default, search results are buffered in temporary files. When set to `true`, results\nwill be stored in `MongoDB` instead."
129
125
},
130
126
"dataset": {
131
127
"type": [
@@ -134,14 +130,6 @@
134
130
],
135
131
"description": "The dataset to search within. If not provided, only `default` dataset will be searched."
136
132
},
137
-
"end_timestamp": {
138
-
"type": [
139
-
"integer",
140
-
"null"
141
-
],
142
-
"format": "int64",
143
-
"description": "The ending timestamp (in epoch milliseconds) for the search range (inclusive)."
144
-
},
145
133
"ignore_case": {
146
134
"type": "boolean",
147
135
"description": "Whether the string match should be case-insensitive."
@@ -156,9 +144,21 @@
156
144
"type": "string",
157
145
"description": "The search query as a KQL string."
158
146
},
159
-
"write_to_file": {
160
-
"type": "boolean",
161
-
"description": "Whether to write the search results to files. If `false`, results will be stored in\n`MongoDB`."
147
+
"time_range_begin_millisecs": {
148
+
"type": [
149
+
"integer",
150
+
"null"
151
+
],
152
+
"format": "int64",
153
+
"description": "The beginning timestamp (in epoch milliseconds) for the search range (inclusive)."
154
+
},
155
+
"time_range_end_millisecs": {
156
+
"type": [
157
+
"integer",
158
+
"null"
159
+
],
160
+
"format": "int64",
161
+
"description": "The ending timestamp (in epoch milliseconds) for the search range (inclusive)."
0 commit comments