Notify-worker DLQ depth (unauthenticated, scraper-friendly)
GET
/v1/health/notify
const url = 'http://localhost:3000/v1/health/notify';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/v1/health/notifyResponses
Section titled “Responses”Notify DLQ depth.
Media typeapplication/json
object
status
required
string
dlqDepth
required
integer | null
Example
{ "status": "ok"}