Retrieve monitoring data for events including consumer lag and event metrics (last 24 hours by default)
curl --request GET \
--url https://api.cloud.flexprice.io/v1/events/monitoring \
--header 'x-api-key: <api-key>'{
"consumption_lag": 123,
"points": [
{
"event_count": 123,
"timestamp": "<string>"
}
],
"post_processing_lag": 123,
"total_count": 123
}Enter your API key in the format x-api-key <api-key>*
Window size for time series data (e.g., 'HOUR', 'DAY') - optional
curl --request GET \
--url https://api.cloud.flexprice.io/v1/events/monitoring \
--header 'x-api-key: <api-key>'{
"consumption_lag": 123,
"points": [
{
"event_count": 123,
"timestamp": "<string>"
}
],
"post_processing_lag": 123,
"total_count": 123
}