Add events.clear_scroll endpoint to clear event search scrolls

This commit is contained in:
allegroai
2022-04-18 16:29:57 +03:00
parent abd65e103e
commit d146127c18
4 changed files with 50 additions and 2 deletions

View File

@@ -1304,3 +1304,24 @@ scalar_metrics_iter_raw {
}
}
}
clear_scroll {
"2.18" {
description: "Clear an open Scroll ID"
request {
type: object
required: [
scroll_id
]
properties {
scroll_id {
description: "Scroll ID as returned by previous events service calls"
type: string
}
}
}
response {
type: object
additionalProperties: false
}
}
}