···11use crate::metrics::define_metrics;
2233-define_metrics!(SmiteCoordinatorMetrics, [
33+define_metrics!(OspreyCoordinatorMetrics, [
44 // How long an action has been processed by a worker for before it is acked/nacked
55 action_outstanding_duration => StaticHistogram(),
66 // How long an action has been held in the async queue for before it is sent to a worker
···1313 priority_queue_size_async => StaticGauge("priority_queue_size",["type" => "async"]),
14141515 // How many receivers are open for the priority queue
1616- // can be used as a proxy for number of connections open from the smite worker
1616+ // can be used as a proxy for number of connections open from the osprey worker
1717 priority_queue_receiver_count_sync => StaticGauge("priority_queue_receiver_count",["type" => "sync"]),
1818 priority_queue_receiver_count_async => StaticGauge("priority_queue_receiver_count",["type" => "async"]),
1919