Get buffered requests stream

Similarly to the /api/v1/buffered_requests, this endpoint gives you the list of the requests currenty being buffered but in a form of a stream of server sent events (SSE).

Every time the number of buffered requests changes, a new event is sent.

Endpoint

Method: GET
Path: /api/v1/buffered_requests/stream

Response

Each event is a JSON object with the numer of requests currently being buffered, for example:

{
  "buffered_requests_current": 10
}