| 78 | } |
| 79 | |
| 80 | void mrcProfiler::MRCProfilerSHARDS::run() { |
| 81 | if (has_run_) return; |
| 82 | |
| 83 | if (params_.shards_params.enable_fix_size) { |
| 84 | fixed_sample_size_run(); |
| 85 | } else { |
| 86 | fixed_sample_rate_run(); |
| 87 | } |
| 88 | |
| 89 | has_run_ = true; |
| 90 | } |
| 91 | |
| 92 | void mrcProfiler::MRCProfilerSHARDS::fixed_sample_rate_run() { |
| 93 | // 1. init |
nothing calls this directly
no test coverage detected