Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Add histogram for insertion time to completion time (#5)
Browse files Browse the repository at this point in the history
* Add histogram for insertion time to completion time

* Handle feedback

* Oops, spurious import
  • Loading branch information
bretthoerner authored Feb 8, 2024
1 parent f9626e9 commit c856730
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions hook-worker/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use std::collections;
use std::sync::Arc;
use std::time;

use chrono::Utc;
use futures::future::join_all;
use hook_common::health::HealthHandle;
use hook_common::pgqueue::PgTransactionBatch;
Expand Down Expand Up @@ -234,11 +235,24 @@ async fn process_webhook_job<W: WebhookJob>(

match send_result {
Ok(_) => {
let created_at = webhook_job.job().created_at;
let retries = webhook_job.job().attempt - 1;
let labels_with_retries = [
("queue", webhook_job.queue()),
("retries", retries.to_string()),
];

webhook_job.complete().await.map_err(|error| {
metrics::counter!("webhook_jobs_database_error", &labels).increment(1);
error
})?;

let insert_to_complete_duration = Utc::now() - created_at;
metrics::histogram!(
"webhook_jobs_insert_to_complete_duration_seconds",
&labels_with_retries
)
.record((insert_to_complete_duration.num_milliseconds() as f64) / 1_000_f64);
metrics::counter!("webhook_jobs_completed", &labels).increment(1);
metrics::histogram!("webhook_jobs_processing_duration_seconds", &labels)
.record(elapsed);
Expand Down

0 comments on commit c856730

Please sign in to comment.