WebhookDeliveryStatsBucket
One time bucket of delivery statistics.
type WebhookDeliveryStatsBucket {
timestamp: Int!
total: Int!
failed: Int!
minDurationMs: Float
avgDurationMs: Float
maxDurationMs: Float
}
Fields
WebhookDeliveryStatsBucket.timestamp ● Int! non-null scalar
Start of the bucket (epoch seconds).
WebhookDeliveryStatsBucket.total ● Int! non-null scalar
Deliveries created in this bucket.
WebhookDeliveryStatsBucket.failed ● Int! non-null scalar
Of those, how many ended in FAILED.
WebhookDeliveryStatsBucket.minDurationMs ● Float scalar
Fastest attempt in this bucket, in milliseconds.
WebhookDeliveryStatsBucket.avgDurationMs ● Float scalar
Mean attempt duration in this bucket, in milliseconds.
WebhookDeliveryStatsBucket.maxDurationMs ● Float scalar
Slowest attempt in this bucket, in milliseconds.
Returned By
webhookDeliveryStats query
Was this page helpful?