Get ingest volume
GET
/api/admin/system/ingest
const url = 'https://hitkeep.com/api/admin/system/ingest';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/api/admin/system/ingest \ --cookie hk_token=<hk_token>Returns recent hit, event, rejection, spam, and hit-rate counters across the instance, including tenant analytics databases.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”System ingest stats
Media type application/json
object
hits_per_second
number format: double
recent_events
integer
recent_hits
integer
recent_rejections
integer
recent_spam
integer
Example generated
{ "hits_per_second": 1, "recent_events": 1, "recent_hits": 1, "recent_rejections": 1, "recent_spam": 1}