flare icon indicating copy to clipboard operation
flare copied to clipboard

Can Monitor support sampling?

Open Fin-chan opened this issue 1 year ago • 0 comments

 internal::QueueDpc([essentials = std::move(essentials)] {
    bool sample = flare::Random(1, 100) <= FLAGS_flare_monitor_zhiyan_sample_rate;
    if(!sample){
       return;
    }
  ....
  });

Is this possible?

Fin-chan avatar Apr 18 '24 11:04 Fin-chan