Trait reqray::FinishedCallTreeProcessor[][src]

pub trait FinishedCallTreeProcessor {
    fn process_finished_call(&self, pool: CallPathPool);
}
Expand description

A FinishedCallTreeProcessor uses the aggregated call tree for something useful.

Expected use cases:

  • Log the call tree
  • Generate metrics from the call tree
  • Do anamoly detection on the call tree
  • Send the call tree elswhere for further aggregation

Required methods

Implementors